Logan Smyth 5eb193c61f Ensure that Identifier source mappings explicitly start and stop on the generated range (#8380)
* Add sourcemap examples for identifiers in code generator.

* Generate sourcemaps with exact mappings for identifiers, even if leading/trailing tokens also use that location.
2018-07-27 16:27:33 -04:00

17 lines
160 B
JavaScript

foo;
foo();
foo().bar;
obj.foo;
obj.foo();
obj.foo.bar;
obj.foo().bar;
{
foo;
foo();
foo().bar;
obj.foo;
obj.foo();
obj.foo.bar;
obj.foo().bar;
}