loxxy 0.0.24 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loxxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dimitri Geshef
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-20 00:00:00.000000000 Z
11
+ date: 2021-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rley
@@ -89,7 +89,11 @@ files:
89
89
  - lib/loxxy/ast/ast_visitor.rb
90
90
  - lib/loxxy/ast/lox_assign_expr.rb
91
91
  - lib/loxxy/ast/lox_binary_expr.rb
92
+ - lib/loxxy/ast/lox_block_stmt.rb
93
+ - lib/loxxy/ast/lox_call_expr.rb
92
94
  - lib/loxxy/ast/lox_compound_expr.rb
95
+ - lib/loxxy/ast/lox_for_stmt.rb
96
+ - lib/loxxy/ast/lox_fun_stmt.rb
93
97
  - lib/loxxy/ast/lox_grouping_expr.rb
94
98
  - lib/loxxy/ast/lox_if_stmt.rb
95
99
  - lib/loxxy/ast/lox_literal_expr.rb
@@ -101,9 +105,11 @@ files:
101
105
  - lib/loxxy/ast/lox_unary_expr.rb
102
106
  - lib/loxxy/ast/lox_var_stmt.rb
103
107
  - lib/loxxy/ast/lox_variable_expr.rb
108
+ - lib/loxxy/ast/lox_while_stmt.rb
104
109
  - lib/loxxy/back_end/engine.rb
105
110
  - lib/loxxy/back_end/entry.rb
106
111
  - lib/loxxy/back_end/environment.rb
112
+ - lib/loxxy/back_end/function.rb
107
113
  - lib/loxxy/back_end/symbol_table.rb
108
114
  - lib/loxxy/back_end/variable.rb
109
115
  - lib/loxxy/datatype/all_datatypes.rb