Class: Opal::Nodes::RegexpNode
- Defined in:
- opal/lib/opal/nodes/literal.rb
Constant Summary collapse
- SUPPORTED_FLAGS =
/[gimuy]/.freeze
Instance Attribute Summary collapse
-
#flags ⇒ Object
Returns the value of attribute flags.
-
#value ⇒ Object
Returns the value of attribute value.
Attributes inherited from Base
Attributes included from Closure::NodeSupport
Instance Method Summary collapse
- #compile ⇒ Object
- #compile_dynamic_regexp ⇒ Object
- #compile_static_regexp ⇒ Object
- #extract_flags_and_value ⇒ Object
-
#initialize ⇒ RegexpNode
constructor
A new instance of RegexpNode.
- #raw_value ⇒ Object
Methods inherited from Base
#add_gvar, #add_ivar, #add_local, #add_temp, children, #children, #class_variable_owner, #class_variable_owner_nesting_level, #comments, #compile_to_fragments, #error, #expr, #expr?, #expr_or_empty, #expr_or_nil, #fragment, handle, handlers, #has_rescue_else?, #helper, #in_ensure, #in_ensure?, #in_resbody, #in_resbody?, #in_rescue, #in_while?, #process, #push, #recv, #recv?, #s, #scope, #source_location, #stmt, #stmt?, #top_scope, truthy_optimize?, #unshift, #while_loop, #with_temp, #wrap
Methods included from Closure::NodeSupport
#closure_is?, #compile_catcher, #generate_thrower, #generate_thrower_without_catcher, #in_closure, #pop_closure, #push_closure, #select_closure, #thrower
Methods included from Helpers
#current_indent, #empty_line, #indent, #js_truthy, #js_truthy_optimize, #line, #mid_to_jsid, #property, #valid_name?
Constructor Details
#initialize ⇒ RegexpNode
Returns a new instance of RegexpNode.
121 122 123 124 |
# File 'opal/lib/opal/nodes/literal.rb', line 121 def initialize(*) super extract_flags_and_value end |
Instance Attribute Details
#flags ⇒ Object
Returns the value of attribute flags.
116 117 118 |
# File 'opal/lib/opal/nodes/literal.rb', line 116 def flags @flags end |
#value ⇒ Object
Returns the value of attribute value.
116 117 118 |
# File 'opal/lib/opal/nodes/literal.rb', line 116 def value @value end |
Instance Method Details
#compile ⇒ Object
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'opal/lib/opal/nodes/literal.rb', line 126 def compile flags.select! do |flag| if SUPPORTED_FLAGS =~ flag true else compiler.warning "Skipping the '#{flag}' Regexp flag as it's not widely supported by JavaScript vendors." false end end if value.type == :str compile_static_regexp else compile_dynamic_regexp end end |
#compile_dynamic_regexp ⇒ Object
143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'opal/lib/opal/nodes/literal.rb', line 143 def compile_dynamic_regexp helper :regexp push '$regexp([' value.children.each_with_index do |v, index| push ', ' unless index.zero? push expr(v) end push ']' push ", '#{flags.join}'" if flags.any? push ")" end |
#compile_static_regexp ⇒ Object
156 157 158 159 160 161 162 163 164 |
# File 'opal/lib/opal/nodes/literal.rb', line 156 def compile_static_regexp value = self.value.children[0] case value when '' push('/(?:)/') else push "#{Regexp.new(value).inspect}#{flags.join}" end end |
#extract_flags_and_value ⇒ Object
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'opal/lib/opal/nodes/literal.rb', line 166 def extract_flags_and_value *values, flags_sexp = *children self.flags = flags_sexp.children.map(&:to_s) self.value = if values.empty? # empty regexp, we can process it inline s(:str, '') elsif single_line?(values) # simple plain regexp, we can put it inline values[0] else s(:dstr, *values) end # trimming when //x provided # required by parser gem, but JS doesn't support 'x' flag if flags.include?('x') parts = value.children.map do |part| if part.is_a?(::Opal::AST::Node) && part.type == :str trimmed_value = part.children[0].gsub(/\A\s*\#.*/, '').gsub(/\s/, '') s(:str, trimmed_value) else part end end self.value = value.updated(nil, parts) flags.delete('x') end if value.type == :str # Replacing \A -> ^, \z -> $, required for the parser gem self.value = s(:str, value.children[0].gsub('\A', '^').gsub('\z', '$')) end end |
#raw_value ⇒ Object
202 203 204 |
# File 'opal/lib/opal/nodes/literal.rb', line 202 def raw_value self.value = @sexp.loc.expression.source end |