コード例 #1
0
 public FunctionParameter(VariableType type, List <Specifier> specs,
                          VariableIdentifier variable, SourcePosition start, SourcePosition end)
     : base(specs, variable, type, start, end)
 {
     Type = ASTNodeType.FunctionParameter;
 }
コード例 #2
0
ファイル: Variable.cs プロジェクト: Mgamerz/ME3Libs
 public Variable(List<Specifier> specs, VariableIdentifier name,
     VariableType type, SourcePosition start, SourcePosition end)
     : base(type, specs, new List<VariableIdentifier> { name }, start, end)
 {
     Type = ASTNodeType.Variable;
 }
コード例 #3
0
 public bool VisitNode(VariableIdentifier node)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
ファイル: FunctionParameter.cs プロジェクト: Mgamerz/ME3Libs
 public FunctionParameter(VariableType type, List<Specifier> specs,
     VariableIdentifier variable, SourcePosition start, SourcePosition end)
     : base(specs, variable, type, start, end)
 {
     Type = ASTNodeType.FunctionParameter;
 }