* Transform for F#-style await Inludes support for optimizing single-parameter arrow functions * Wait until optimization before pushing placeholder into scope
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
(function() {
|
|
'use strict';
|
|
var result = '(function() { return this; })()'
|
|
|> eval;
|
|
|
|
expect(result).not.toBeUndefined();
|
|
})();
|