Jurassic.Compiler.LiteralExpression.LiteralExpression C# (CSharp) Method

LiteralExpression() public method

Creates a new instance of LiteralExpression.
public LiteralExpression ( object value ) : System
value object The literal value.
return System
        public LiteralExpression(object value)
        {
            this.Value = value;
        }