コード例 #1
0
ファイル: ExpressionFactory.cs プロジェクト: macias/Skila
 public static FunctionCall ThisInit(params FunctionArgument[] arguments)
 {
     return(FunctionCall.Constructor(NameReference.Create(NameFactory.ThisVariableName, NameFactory.InitConstructorName),
                                     arguments));
 }
コード例 #2
0
ファイル: ExpressionFactory.cs プロジェクト: macias/Skila
 public static FunctionCall BaseInit(params FunctionArgument[] arguments)
 {
     return(FunctionCall.Constructor(NameReference.CreateBaseInitReference(), arguments));
 }