Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test-reserved.coffee 310B

123456789101112131415161718192021222324252627
  1. # Should be an error
  2. function = 42
  3. var = 42
  4. # Shouldn't be an error
  5. abc.with = 42
  6. function: 42
  7. var: 42
  8. # Keywords shouldn't be highlighted
  9. abc.function
  10. abc.do
  11. abc.break
  12. abc.true
  13. abc::function
  14. abc::do
  15. abc::break
  16. abc::true
  17. abc:: function
  18. abc. function
  19. # Numbers should be highlighted
  20. def.42
  21. def .42
  22. def::42