0

Javascript syntax highlighting for wrapped functions

Ben Vanik il y a 13 ans 0
If you have a function that wraps syntax highlighting will be broken.

For example, this function will be correctly highlighted:
foo.func = function(a, b, c) {
};

But this function won't be:
foo.func = function(a,
  b, c) {
};