rbelly 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -47,6 +47,7 @@ lib/rbelly/nodes/resolve_node.rb
47
47
  lib/rbelly/nodes/strict_equal_node.rb
48
48
  lib/rbelly/nodes/try_node.rb
49
49
  lib/rbelly/nodes/var_decl_node.rb
50
+ lib/rbelly/nodes/bellejs/import_node.rb
50
51
  lib/rbelly/parser.rb
51
52
  lib/rbelly/runtime.rb
52
53
  lib/rbelly/runtime/ruby_function.rb
@@ -0,0 +1,12 @@
1
+ module RBelly
2
+ module Nodes
3
+ class ImportNode < Node
4
+ attr_accessor :file
5
+ def initialize(file_name)
6
+ super(file_name)
7
+ @file = file_name
8
+ end
9
+
10
+ end
11
+ end
12
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbelly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -103,6 +103,7 @@ files:
103
103
  - lib/rbelly/nodes/strict_equal_node.rb
104
104
  - lib/rbelly/nodes/try_node.rb
105
105
  - lib/rbelly/nodes/var_decl_node.rb
106
+ - lib/rbelly/nodes/bellejs/import_node.rb
106
107
  - lib/rbelly/parser.rb
107
108
  - lib/rbelly/runtime.rb
108
109
  - lib/rbelly/runtime/ruby_function.rb