Use squote/dquote everywhere in the lexer.

This commit is contained in:
Yorick Peterse 2014-02-28 23:18:23 +01:00
parent 970ce27283
commit 30d3e455d1
1 changed files with 3 additions and 2 deletions

View File

@ -229,14 +229,15 @@ module Oga
'<' => { t(:T_SMALLER) };
'>' => { t(:T_GREATER) };
'/' => { t(:T_SLASH) };
'"' => { t(:T_DQUOTE) };
"'" => { t(:T_SQUOTE) };
'-' => { t(:T_DASH) };
']' => { t(:T_RBRACKET) };
'[' => { t(:T_LBRACKET) };
':' => { t(:T_COLON) };
'!' => { t(:T_BANG) };
'=' => { t(:T_EQUALS) };
dquote => { t(:T_DQUOTE) };
squote => { t(:T_SQUOTE) };
*|;
}%%
end # Lexer