class BELParser::Language::Semantics::SemanticAny

AST node for Any is a semantic AST.

Public Class Methods

new(**properties) click to toggle source
# File lib/bel_parser/language/semantics_ast.rb, line 545
def initialize(**properties)
  super(:any, [], properties)
end

Public Instance Methods

match(parse_node, spec, will_match_partial = false) click to toggle source
# File lib/bel_parser/language/semantics_ast.rb, line 549
def match(parse_node, spec, will_match_partial = false)
  success(parse_node, spec)
end