Exemplo n.º 1
0
 public FunctionParameter(VariableType type, List <Specifier> specs,
                          VariableIdentifier variable, SourcePosition start, SourcePosition end)
     : base(specs, variable, type, start, end)
 {
     Type = ASTNodeType.FunctionParameter;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 3
0
 public bool VisitNode(VariableIdentifier node)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public FunctionParameter(VariableType type, List<Specifier> specs,
     VariableIdentifier variable, SourcePosition start, SourcePosition end)
     : base(specs, variable, type, start, end)
 {
     Type = ASTNodeType.FunctionParameter;
 }