예제 #1
0
파일: Ast.cs 프로젝트: johtela/Compose3D
 public CallStatement(ExternalFunctionCall call)
 {
     ExternalCall = call;
 }
예제 #2
0
 public void CompileExternalFunctionCall(ExternalFunctionCall efc)
 {
 }
예제 #3
0
파일: Ast.cs 프로젝트: johtela/Compose3D
 public static CallStatement CallS(ExternalFunctionCall call)
 {
     return(new CallStatement(call));
 }