Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C# parser : bug with operators (fix inside) #53

Closed
dricks opened this issue Mar 28, 2011 · 1 comment
Closed

C# parser : bug with operators (fix inside) #53

dricks opened this issue Mar 28, 2011 · 1 comment

Comments

@dricks
Copy link

dricks commented Mar 28, 2011

Operators in the C# parser does not work because of a typo line 211 of file tokenizecsharp.js

instead of :
else if (ch = "@") {

we should have :
else if (ch == "@") {

Thanks

@marijnh
Copy link
Member

marijnh commented Mar 29, 2011

Thanks. Fixed in cd6f811

@marijnh marijnh closed this as completed Mar 29, 2011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants