2 using System.Collections.Generic;
6 using Irony.Interpreter;
8 namespace Irony.Interpreter.Ast {
13 base.Init(context, treeNode);
14 Value = treeNode.Token.Value;
15 AsString = Value == null ?
"null" : Value.ToString();
17 AsString =
"\"" + AsString +
"\"";
23 context.Data.Push(Value);
static string ErrAssignLiteralValue
Looks up a localized string similar to Invalide operation, attempt to assign constant or literal valu...
override void EvaluateNode(EvaluationContext context, AstMode mode)
override void Init(ParsingContext context, ParseTreeNode treeNode)