module Ruby2JS::Filter::SEXP

Public Instance Methods

S(type, *args) click to toggle source
# File lib/ruby2js.rb, line 61
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 57
def s(type, *args)
  Parser::AST::Node.new type, args
end