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