| Class | Origami::ByteString |
| In: |
sources/parser/string.rb
sources/parser/obfuscation.rb |
| Parent: | ::String |
| str: | The string value. |
# File sources/parser/string.rb, line 199
199: def initialize(str = "", indirect = false)
200:
201: unless str.is_a?(::String)
202: raise TypeError, "Expected type String, received #{str.class}."
203: end
204:
205: super(indirect, str)
206: end