/third_party/typescript/tests/baselines/reference/ |
H A D | omitTypeTestErrors01.js | 23 exports.__esModule = true;
24 exports.getBazB = exports.getBarC = void 0;
28 exports.getBarC = getBarC;
32 exports.getBazB = getBazB;
|
H A D | omitTypeTests01.js | 23 exports.__esModule = true;
24 exports.getBazA = exports.getBarA = void 0;
28 exports.getBarA = getBarA;
32 exports.getBazA = getBazA;
|
H A D | defaultExportsGetExportedCommonjs.js | 12 Object.defineProperty(exports, "__esModule", { value: true });
15 exports.default = Foo;
18 Object.defineProperty(exports, "__esModule", { value: true });
20 exports.default = foo;
|
H A D | defaultIsNotVisibleInLocalScope.js | 15 exports.__esModule = true;
19 exports["default"] = default_1;
22 exports.__esModule = true;
23 exports["default"] = { a: true };
|
H A D | moduleExportAliasElementAccessExpression.js | 3 exports["D"] = D; 5 exports["Does not work yet"] = D; 10 exports["D"] = D;
12 exports["Does not work yet"] = D;
|
H A D | moduleResolutionWithSuffixes_empty.js | 11 exports.__esModule = true;
12 exports.base = void 0;
14 exports.base = base;
17 exports.__esModule = true;
|
H A D | moduleResolutionWithSuffixes_notSpecified.js | 11 exports.__esModule = true;
12 exports.base = void 0;
14 exports.base = base;
17 exports.__esModule = true;
|
H A D | moduleResolutionWithSuffixes_oneBlank.js | 11 exports.__esModule = true;
12 exports.base = void 0;
14 exports.base = base;
17 exports.__esModule = true;
|
H A D | moduleResolutionWithSuffixes_oneNotFound.js | 11 exports.__esModule = true;
14 exports.__esModule = true;
15 exports.base = void 0;
17 exports.base = base;
|
H A D | moduleResolutionWithSuffixes_threeLastIsBlank3.js | 11 exports.__esModule = true;
12 exports.base = void 0;
14 exports.base = base;
17 exports.__esModule = true;
|
H A D | parserEnum3.js | 7 exports.__esModule = true;
8 exports.SignatureFlags = void 0;
11 })(SignatureFlags = exports.SignatureFlags || (exports.SignatureFlags = {}));
|
H A D | parserEnum4.js | 8 exports.__esModule = true;
9 exports.SignatureFlags = void 0;
12 })(SignatureFlags = exports.SignatureFlags || (exports.SignatureFlags = {}));
|
H A D | es5ExportDefaultIdentifier.js | 9 Object.defineProperty(exports, "__esModule", { value: true });
10 exports.f = void 0;
12 exports.f = f;
13 exports.default = f;
|
H A D | exportAsNamespace_missingEmitHelpers.js | 12 exports.__esModule = true;
15 exports.__esModule = true;
16 exports.ns = void 0;
18 exports.ns = tslib_1.__importStar(require("./a")); // Error
|
H A D | filesEmittingIntoSameOutputWithOutOption.js | 13 define("a", ["require", "exports"], function (require, exports) {
15 exports.__esModule = true;
16 exports.c = void 0;
22 exports.c = c;
|
H A D | anonymousDefaultExportsCommonjs.js | 11 Object.defineProperty(exports, "__esModule", { value: true });
14 exports.default = default_1;
17 Object.defineProperty(exports, "__esModule", { value: true });
19 exports.default = default_1;
|
H A D | typecheckIfCondition.js | 5 if (!module.exports) module.exports = ""; 13 if (!module.exports)
14 module.exports = "";
|
H A D | scannerEnum1.js | 9 exports.__esModule = true;
10 exports.CodeGenTarget = void 0;
15 })(CodeGenTarget = exports.CodeGenTarget || (exports.CodeGenTarget = {}));
|
H A D | spellingSuggestionLeadingUnderscores01.js | 22 exports.__esModule = true;
23 exports.b = void 0;
24 exports.a.___foo;
25 exports.b = {
|
H A D | checkJsdocTypeTagOnExportAssignment2.js | 23 exports.__esModule = true;
26 exports.__esModule = true;
28 exports["default"] = { c: false };
31 exports.__esModule = true;
|
/third_party/node/test/fixtures/apilinks/ |
H A D | exports.js | 3 // Support `exports` as an alternative to `module.exports`. 7 exports.Buffer = Buffer; 8 exports.fn1 = function fn1() {}; 10 var fn2 = exports.fn2 = function() {}; 13 exports.fn3 = fn3;
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | sortAscending.js | 3 exports.__esModule = true; 4 exports["default"] = sortAscending; 11 module.exports = exports.default
|
/third_party/typescript/tests/baselines/reference/transpile/ |
H A D | Export star as ns conflict does not crash.js | 2 exports.__esModule = true;
3 exports.alias = void 0;
5 exports.alias = a;
6 exports.alias = require("./file");
|
H A D | Export star as ns conflict does not crash.oldTranspile.js | 2 exports.__esModule = true;
3 exports.alias = void 0;
5 exports.alias = a;
6 exports.alias = require("./file");
|
/third_party/node/src/ |
H A D | node_binding.cc | 406 using InitializerCallback = void (*)(Local<Object> exports, 457 Local<Object> exports; in DLOpen() local 461 !exports_v->ToObject(context).ToLocal(&exports)) { in DLOpen() 501 callback(exports, module, context); in DLOpen() 509 exports, module, context, JSVM_Callback, module_api_version); in DLOpen() 528 callback(exports, module, context); in DLOpen() 554 mp->nm_context_register_func(exports, module, context, mp->nm_priv); in DLOpen() 556 mp->nm_register_func(exports, module, mp->nm_priv); in DLOpen() 622 Local<Object> exports = GetInternalBindingExportObject( in InitInternalBinding() local 627 // Internal bindings don't have a "module" object, only exports in InitInternalBinding() 642 Local<Object> exports; GetInternalBinding() local 697 Local<Object> exports = Object::New(env->isolate()); GetLinkedBinding() local [all...] |