chelsy 0.0.3 → 0.0.4
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.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/.yardopts +1 -0
- data/README.md +38 -6
- data/chelsy.gemspec +12 -11
- data/lib/chelsy/ast.rb +922 -91
- data/lib/chelsy/syntax.rb +23 -10
- data/lib/chelsy/translator.rb +562 -43
- data/lib/chelsy/version.rb +1 -1
- data/sample/hello_chelsy.rb +1 -2
- data/sample/temperature.c +17 -0
- data/sample/temperature.rb +39 -0
- metadata +21 -4
data/lib/chelsy/syntax.rb
CHANGED
@@ -1,15 +1,19 @@
|
|
1
|
-
module Chelsy;
|
1
|
+
module Chelsy; module Syntax
|
2
2
|
|
3
|
-
|
4
|
-
module Chelsy::Syntax
|
5
|
-
|
6
|
-
class Rule
|
3
|
+
class Constraint
|
7
4
|
attr_reader :name
|
8
5
|
|
6
|
+
# Initialize instance. You must suply its `name` to debugging purpose.
|
7
|
+
#
|
8
|
+
# @param name [String] the name of this constraint
|
9
9
|
def initialize(name)
|
10
10
|
@name = name.dup
|
11
11
|
end
|
12
12
|
|
13
|
+
def ===(node)
|
14
|
+
accept?(node)
|
15
|
+
end
|
16
|
+
|
13
17
|
def accept?(node)
|
14
18
|
false
|
15
19
|
end
|
@@ -23,15 +27,24 @@ module Chelsy::Syntax
|
|
23
27
|
end
|
24
28
|
end
|
25
29
|
|
26
|
-
class Any <
|
27
|
-
def initialize(name,
|
28
|
-
@
|
30
|
+
class Any < Constraint
|
31
|
+
def initialize(name, constraints)
|
32
|
+
@constraints = constraints.dup
|
29
33
|
super name
|
30
34
|
end
|
31
35
|
|
32
36
|
def accept?(node)
|
33
|
-
|
37
|
+
# Most C program uses C preprocessor, so we accept any raw string representation.
|
38
|
+
case node
|
39
|
+
when String
|
40
|
+
true
|
41
|
+
else
|
42
|
+
@constraints.any? do |constraint|
|
43
|
+
constraint === node
|
44
|
+
end
|
45
|
+
end
|
34
46
|
end
|
47
|
+
|
35
48
|
end
|
36
49
|
|
37
|
-
end
|
50
|
+
end; end
|