Esempio n. 1
0
 public LingoArgument(ScriptChunk script, LingoHandler handler)
     : base(script)
 {
     _handler = handler;
 }
Esempio n. 2
0
 public LingoHandlerBody(LingoHandler handler, ref ShockwaveReader input)
     : this(handler)
 {
     Code = new byte[input.ReadInt32()];
 }
Esempio n. 3
0
 public LingoHandlerBody(LingoHandler handler, ShockwaveReader input)
     : this(handler)
 {
     Code = new byte[input.ReadBigEndian <int>()];
 }
Esempio n. 4
0
 public LingoHandlerBody(LingoHandler handler)
 {
     Handler = handler;
 }
Esempio n. 5
0
 public LingoMachine(LingoHandler handler)
 {
     Values = new Stack <object>(handler.Body.StackHeight);
 }