Exemplo n.º 1
0
 public TokenAttribute(string value, AstSymbolType symbol, AstConstructorCallType callType = 0, ParameterModifier pm = 0)
 {
     Value               = value;
     SymbolType          = symbol;
     ConstructorCallType = callType;
     ParameterModifier   = pm;
 }
Exemplo n.º 2
0
 public AstSymbol ReadSymbol(AstSymbolType type)
 {
     return(new AstSymbol(
                ReadSource(), type));
 }
Exemplo n.º 3
0
 public AstSymbol(Source src, AstSymbolType type)
     : base(src)
 {
     SymbolType = type;
 }