Exemplo n.º 1
0
 public MondValue Call(MondValue closure, params MondValue[] arguments)
 {
     return _machine.Call(closure, arguments);
 }
Exemplo n.º 2
0
 public MondValue this[MondValue index]
 {
     get { return _machine.Global[index]; }
     set { _machine.Global[index] = value; }
 }
Exemplo n.º 3
0
 public MondValue Call(MondValue closure, params MondValue[] arguments)
 {
     return(_machine.Call(closure, arguments));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Calls a Mond function.
 /// </summary>
 public MondValue Call(MondValue function, params MondValue[] arguments)
 {
     return _machine.Call(function, arguments);
 }
Exemplo n.º 5
0
 public MondValue this[MondValue index]
 {
     get { return(_machine.Global[index]); }
     set { _machine.Global[index] = value; }
 }