Sha256: eaf6df550a58d52a79a62a41acabefee2259247678734a925b178509d3a4ec05
Contents?: true
Size: 316 Bytes
Versions: 12
Compression:
Stored size: 316 Bytes
Contents
# frozen_string_literal: true require 'opal/ast/node' require 'parser/ruby32' module Opal module AST class Builder < ::Parser::Builders::Default self.emit_lambda = true def n(type, children, location) ::Opal::AST::Node.new(type, children, location: location) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems