NST icon indicating copy to clipboard operation
NST copied to clipboard

JavaScript: wrong tree, bug in regex parsing

Open jumpercc opened this issue 12 years ago • 0 comments

in this code only "One" in the source tree

One = function() {
  this.foo = new bar(
      /[/*]/
  );
};
Two = function() {};

and "Two" is missed

but for this code both "One" and "Two" and the source tree:

One = function() {
  this.foo = new bar(
      /[/]/
  );
};
Two = function() {};

jumpercc avatar Mar 20 '13 19:03 jumpercc