Beispiel #1
0
 public FuncSymbol(string identifier, TwisterType type, SymbolAttribute attributes, object value)
 {
     Identifier = identifier;
     DataType   = type;
     Attributes = attributes;
     Value      = value;
 }
Beispiel #2
0
 public BasicSymbol(string identifier, SymbolKind kind, SymbolAttribute attributes,
                    TwisterType dataType, object value)
 {
     Identifier = identifier;
     Kind       = kind;
     Attributes = attributes;
     DataType   = dataType;
     Value      = value;
 }