Module: Liquidscript::Compiler::ICR::Literals
- Included in:
- Liquidscript::Compiler::ICR
- Defined in:
- lib/liquidscript/compiler/icr/literals.rb
Instance Method Summary collapse
- #_compile_for_in(ident) ⇒ Object
- #_compile_for_seg(first) ⇒ Object
- #compile_action ⇒ Object
- #compile_array ⇒ Object
- #compile_for ⇒ Object
- #compile_function ⇒ Object
- #compile_heredoc ⇒ Object
- #compile_href ⇒ Object
- #compile_identifier(identifier) ⇒ Object
- #compile_iheredoc_begin ⇒ Object
- #compile_istring ⇒ Object
- #compile_istring_begin ⇒ Object
- #compile_keyword ⇒ Object
- #compile_newline ⇒ Object
- #compile_number ⇒ Object
- #compile_object ⇒ Object
- #compile_object_key ⇒ Object
- #compile_operator ⇒ Object
- #compile_regex ⇒ Object
- #compile_sstring ⇒ Object
- #compile_while ⇒ Object
Instance Method Details
#_compile_for_in(ident) ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 38 def _compile_for_in(ident) content = shift :identifier unless content.value == "in" raise CompileError, "Expected `in', got #{content.value}" end obj = shift :identifier shift :rparen set ident body = _compile_block code :for_in, ident, ref(obj), body end |
#_compile_for_seg(first) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 52 def _compile_for_seg(first) first = value_expect(first) shift :comma second = compile_vexpression shift :comma third = compile_vexpression shift :rparen body = _compile_block code :for_seg, first, second, third, body end |
#compile_action ⇒ Object
10 11 12 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 10 def compile_action code :action, shift(:action) end |
#compile_array ⇒ Object
137 138 139 140 141 142 143 144 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 137 def compile_array shift :lbrack parts = collect_compiles(:vexpression, :rbrack, :comma => action.shift) code :array, parts end |
#compile_for ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 23 def compile_for shift :for shift :lparen if peek?(:identifier) ident = shift :identifier if peek?(:identifier) _compile_for_in(ident) else _compile_for_seg(compile_identifier(ident)) end else compile_for_seg compile_vexpression end end |
#compile_function ⇒ Object
153 154 155 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 153 def compile_function compile_function_with_parameters([]) end |
#compile_heredoc ⇒ Object
83 84 85 86 87 88 89 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 83 def compile_heredoc h = shift(:heredoc, :iheredoc) top[:heredocs][top[:herenum]].body = [h] top[:herenum] += 1 nil end |
#compile_href ⇒ Object
74 75 76 77 78 79 80 81 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 74 def compile_href ref = shift :heredoc_ref, :iheredoc_ref heredoc = Heredoc.new(ref.value, ref.type == :iheredoc_ref) top[:heredocs] ||= [] top[:herenum] ||= 0 top[:heredocs] << heredoc code :href, heredoc end |
#compile_identifier(identifier) ⇒ Object
64 65 66 67 68 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 64 def compile_identifier(identifier) ref(identifier) unless peek?(:equal) identifier end |
#compile_iheredoc_begin ⇒ Object
91 92 93 94 95 96 97 98 99 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 91 def compile_iheredoc_begin start = shift :iheredoc_begin contents = [start] _compile_interop(:iheredoc, contents) top[:heredocs][top[:herenum]].body = contents top[:herenum] += 1 nil end |
#compile_istring ⇒ Object
109 110 111 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 109 def compile_istring code :istring, shift(:istring).value end |
#compile_istring_begin ⇒ Object
101 102 103 104 105 106 107 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 101 def compile_istring_begin start = shift :istring_begin contents = [start] _compile_interop(:istring, contents) code :interop, *contents end |
#compile_keyword ⇒ Object
121 122 123 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 121 def compile_keyword code :keyword, shift(:keyword) end |
#compile_newline ⇒ Object
157 158 159 160 161 162 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 157 def compile_newline if peek?(:newline) pop code :newline end end |
#compile_number ⇒ Object
6 7 8 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 6 def compile_number code :number, pop.value end |
#compile_object ⇒ Object
125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 125 def compile_object shift :lbrace objects = collect_compiles :rbrace, :comma => action.shift, :newline => action.shift do [compile_object_key, compile_vexpression] end code :object, objects end |
#compile_object_key ⇒ Object
146 147 148 149 150 151 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 146 def compile_object_key key = shift :identifier, :istring shift :colon key end |
#compile_operator ⇒ Object
117 118 119 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 117 def compile_operator code :operator, shift(:operator), compile_vexpression end |
#compile_regex ⇒ Object
70 71 72 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 70 def compile_regex code :regex, shift(:regex) end |
#compile_sstring ⇒ Object
113 114 115 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 113 def compile_sstring code :sstring, shift(:sstring).value[1..-1] end |
#compile_while ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/liquidscript/compiler/icr/literals.rb', line 14 def compile_while shift :while shift :lparen conditional = compile_vexpression shift :rparen body = _compile_block code :while, conditional, body end |