0

Javascript syntax highlighting for wrapped functions

Ben Vanik 13 aastat tagasi 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) {
};