troyhen/neo

Finish regular expression literals

Closed this issue · 1 comments

These need to work:

/[A-Z]+/ == Pattern.compile("[A-Z]+")
/\s+/ == Pattern.compile("\\s+")
/\/[/]/ == Pattern.compile("\/[/]")
// throws LexException

Done