Module: RKelly

Defined in:
lib/rkelly.rb,
lib/rkelly/token.rb,
lib/rkelly/js/nan.rb,
lib/rkelly/lexeme.rb,
lib/rkelly/parser.rb,
lib/rkelly/js/base.rb,
lib/rkelly/js/math.rb,
lib/rkelly/runtime.rb,
lib/rkelly/char_pos.rb,
lib/rkelly/js/array.rb,
lib/rkelly/js/scope.rb,
lib/rkelly/constants.rb,
lib/rkelly/js/number.rb,
lib/rkelly/js/object.rb,
lib/rkelly/js/string.rb,
lib/rkelly/tokenizer.rb,
lib/rkelly/visitable.rb,
lib/rkelly/char_range.rb,
lib/rkelly/js/boolean.rb,
lib/rkelly/nodes/node.rb,
lib/rkelly/js/function.rb,
lib/rkelly/js/property.rb,
lib/rkelly/syntax_error.rb,
lib/rkelly/nodes/if_node.rb,
lib/rkelly/nodes/for_node.rb,
lib/rkelly/nodes/try_node.rb,
lib/rkelly/generated_parser.rb,
lib/rkelly/js/global_object.rb,
lib/rkelly/nodes/comma_node.rb,
lib/rkelly/nodes/label_node.rb,
lib/rkelly/visitors/visitor.rb,
lib/rkelly/nodes/binary_node.rb,
lib/rkelly/nodes/for_in_node.rb,
lib/rkelly/nodes/prefix_node.rb,
lib/rkelly/nodes/postfix_node.rb,
lib/rkelly/nodes/resolve_node.rb,
lib/rkelly/js/object_prototype.rb,
lib/rkelly/nodes/new_expr_node.rb,
lib/rkelly/nodes/op_equal_node.rb,
lib/rkelly/nodes/property_node.rb,
lib/rkelly/nodes/var_decl_node.rb,
lib/rkelly/runtime/scope_chain.rb,
lib/rkelly/visitors/dot_visitor.rb,
lib/rkelly/js/function_prototype.rb,
lib/rkelly/runtime/ruby_function.rb,
lib/rkelly/visitors/ecma_visitor.rb,
lib/rkelly/visitors/sexp_visitor.rb,
lib/rkelly/nodes/case_clause_node.rb,
lib/rkelly/nodes/conditional_node.rb,
lib/rkelly/nodes/dot_accessor_node.rb,
lib/rkelly/nodes/strict_equal_node.rb,
lib/rkelly/nodes/function_call_node.rb,
lib/rkelly/nodes/function_decl_node.rb,
lib/rkelly/nodes/function_expr_node.rb,
lib/rkelly/visitors/function_visitor.rb,
lib/rkelly/visitors/pointcut_visitor.rb,
lib/rkelly/visitors/real_sexp_visitor.rb,
lib/rkelly/nodes/bracket_accessor_node.rb,
lib/rkelly/nodes/not_strict_equal_node.rb,
lib/rkelly/visitors/enumerable_visitor.rb,
lib/rkelly/visitors/evaluation_visitor.rb

Defined Under Namespace

Modules: JS, Nodes, Visitable, Visitors Classes: CharPos, CharRange, GeneratedParser, Lexeme, Parser, Runtime, SyntaxError, Token, Tokenizer

Constant Summary collapse

VERSION =
'0.0.7'

Class Method Summary collapse

Class Method Details

.parse(*args) ⇒ Object



10
11
12
# File 'lib/rkelly.rb', line 10

def parse *args
  RKelly::Parser.new.parse(*args)
end