Method: Sass::SCSS::Parser#parse_interp_ident
- Defined in:
- lib/sass/scss/parser.rb
#parse_interp_ident ⇒ Array<String, Sass::Script::Node>?
Parses an identifier with interpolation.
Note that this won't assert that the identifier takes up the entire input string;
it's meant to be used with StringScanners as part of other parsers.
38 39 40 41 |
# File 'lib/sass/scss/parser.rb', line 38
def parse_interp_ident
init_scanner!
interp_ident
end
|