troyhen / neo

Neo Programming Language
https://groups.google.com/forum/#!forum/neo-lang
12 stars 0 forks source link

Finish regular expression literals #25

Closed troyhen closed 12 years ago

troyhen commented 12 years ago

These need to work:

/[A-Z]+/ == Pattern.compile("[A-Z]+")
/\s+/ == Pattern.compile("\\s+")
/\/[/]/ == Pattern.compile("\/[/]")
// throws LexException
troyhen commented 12 years ago

Done