taking the identifier-with-dashes thing back out. it doesnt mesh well with D and JS

This commit is contained in:
Adam D. Ruppe 2017-04-19 23:22:10 -04:00
parent 0f8df3f6cd
commit 204bb867b0
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
SPECIFICS
$(LIST
* Allows identifiers-with-dashes. To do subtraction, put spaces around the minus sign.
// * Allows identifiers-with-dashes. To do subtraction, put spaces around the minus sign.
* Allows identifiers starting with a dollar sign.
* string literals come in "foo" or 'foo', like Javascript, or `raw string` like D. Also come as nested double quotes are an option!
* double quoted string literals can do Ruby-style interpolation: "Hello, #{name}".
@ -476,7 +476,7 @@ class TokenStream(TextStream) {
while(pos < text.length
&& ((text[pos] >= 'a' && text[pos] <= 'z') ||
(text[pos] == '_') ||
(pos != 0 && text[pos] == '-') || // allow mid-identifier dashes for this-kind-of-name. For subtraction, add a space.
//(pos != 0 && text[pos] == '-') || // allow mid-identifier dashes for this-kind-of-name. For subtraction, add a space.
(text[pos] >= 'A' && text[pos] <= 'Z') ||
(text[pos] >= '0' && text[pos] <= '9')))
{