Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit bc2a46a

Browse files
committedJun 1, 2015
!eval -> !transpiled
1 parent 34789e4 commit bc2a46a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/transpiler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ var transpile = (function() {
2626
return '(function(__moduleName, __moduleAddress) {'
2727
+ transpileFunction.call(self, load, transpiler)
2828
+ '\n}).call({}, "' + load.name + '", "' + load.address + '");'
29-
+ '\n//# sourceURL=' + load.address + '!eval';
29+
+ '\n//# sourceURL=' + load.address + '!transpiled';
3030

3131
// sourceURL and sourceMappingURL:
3232
// Ideally we wouldn't need a sourceURL and would just use the sourceMap.
3333
// But without the sourceURL as well, line-by-line debugging doesn't work.
3434
// We thus need to ensure the sourceURL is a different name to the original
35-
// source, and hence the !eval suffix.
35+
// source, and hence the !transpiled suffix.
3636
});
3737
};
3838

0 commit comments

Comments
 (0)
This repository has been archived.