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.
data/lib/chelsy/syntax.rb CHANGED
@@ -1,15 +1,19 @@
1
- module Chelsy; end
1
+ module Chelsy; module Syntax
2
2
 
3
- # Syntax rules
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 < Rule
27
- def initialize(name, classes)
28
- @classes = classes
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
- @classes.any? {|klass| klass === node }
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