module Ruby2JS::Filter::SEXP
Public Instance Methods
S(type, *args)
click to toggle source
update existing node
# File lib/ruby2js.rb, line 64 def S(type, *args) @ast.updated(type, args) end
s(type, *args)
click to toggle source
construct an AST Node
# File lib/ruby2js.rb, line 59 def s(type, *args) Parser::AST::Node.new type, args end