예제 #1
0
파일: MondState.cs 프로젝트: krixalis/Mond
 public MondValue Call(MondValue closure, params MondValue[] arguments)
 {
     return _machine.Call(closure, arguments);
 }
예제 #2
0
파일: MondState.cs 프로젝트: krixalis/Mond
 public MondValue this[MondValue index]
 {
     get { return _machine.Global[index]; }
     set { _machine.Global[index] = value; }
 }
예제 #3
0
 public MondValue Call(MondValue closure, params MondValue[] arguments)
 {
     return(_machine.Call(closure, arguments));
 }
예제 #4
0
 /// <summary>
 /// Calls a Mond function.
 /// </summary>
 public MondValue Call(MondValue function, params MondValue[] arguments)
 {
     return _machine.Call(function, arguments);
 }
예제 #5
0
 public MondValue this[MondValue index]
 {
     get { return(_machine.Global[index]); }
     set { _machine.Global[index] = value; }
 }