Method: CEML::Scripts#_nt_scripts

Defined in:
lib/ceml/lang/tt/scripts.rb

#_nt_scriptsObject



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/ceml/lang/tt/scripts.rb', line 44

def _nt_scripts
  start_index = index
  if node_cache[:scripts].has_key?(index)
    cached = node_cache[:scripts][index]
    if cached
      cached = SyntaxNode.new(input, index...(index + 1)) if cached == true
      @index = cached.interval.end
    end
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_script
  s0 << r1
  if r1
    s2, i2 = [], index
    loop do
      i3, s3 = index, []
      r4 = _nt_nl
      s3 << r4
      if r4
        r5 = _nt_script
        s3 << r5
      end
      if s3.last
        r3 = instantiate_node(SyntaxNode,input, i3...index, s3)
        r3.extend(Scripts0)
      else
        @index = i3
        r3 = nil
      end
      if r3
        s2 << r3
      else
        break
      end
    end
    r2 = instantiate_node(SyntaxNode,input, i2...index, s2)
    s0 << r2
  end
  if s0.last
    r0 = instantiate_node(SyntaxNode,input, i0...index, s0)
    r0.extend(Scripts1)
    r0.extend(Scripts2)
  else
    @index = i0
    r0 = nil
  end

  node_cache[:scripts][start_index] = r0

  r0
end