Indentation fix in the lexer.
This commit is contained in:
parent
f18e8893de
commit
baaa24a760
|
@ -259,11 +259,11 @@ module Oga
|
||||||
|
|
||||||
# Machine for processing double quoted strings.
|
# Machine for processing double quoted strings.
|
||||||
string_dquote := |*
|
string_dquote := |*
|
||||||
^dquote+ => {
|
^dquote+ => {
|
||||||
emit(:T_STRING, ts, te)
|
emit(:T_STRING, ts, te)
|
||||||
};
|
};
|
||||||
|
|
||||||
dquote => { fret; };
|
dquote => { fret; };
|
||||||
*|;
|
*|;
|
||||||
|
|
||||||
# Machine for processing single quoted strings.
|
# Machine for processing single quoted strings.
|
||||||
|
|
Loading…
Reference in New Issue