class BELParser::Parsers::AST::Value

AST node representing a value.

Special node properties - encoding: {#encoding}

Attributes

encoding[RW]

Get/Set the value's encoding.

namespace[RW]

Get/Set the value's namespace.

namespace_value[RW]

Get/Set the value from the purported namespace.

prefix[RW]

Get/Set the namespace prefix.

Public Class Methods

new(children = [], properties = {}) click to toggle source

New Value AST node.

@see Node#initialize Node class for basic properties

Calls superclass method BELParser::Parsers::AST::Node::new
# File lib/bel_parser/parsers/ast/node.rb, line 954
def initialize(children = [], properties = {})
  super(Value.ast_type, children, properties)
end