p-ranav / lexer

Hackable Lexer with UTF-8 support

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

support single quote

MrAhmedSayedAli opened this issue · comments

support single quote
var foo = 'bar';

Type( 13 ) Value( = ) > Type( 0 ) Value( ' ) > Type( 2 ) Value( bar ) > Type( 0 ) Value( ' )

var foo = "bar";

Type( 13 ) Value( = ) > Type( 4 ) Value( bar )