Home
last modified time | relevance | path

Searched refs:isJS (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/npm/node_modules/pacote/lib/util/
Dnpm.js5 const isJS = npmBin.endsWith('.js') constant
6 const cmd = isJS ? process.execPath : npmBin
7 const args = (isJS ? [npmBin] : []).concat(npmCommand)
/third_party/typescript/src/services/refactors/
DextractType.ts35 actions: info.isJS ?
63 Debug.assert(!info.isJS, "Invalid actionName/JS combo");
66 Debug.assert(info.isJS, "Invalid actionName/JS combo");
69 … Debug.assert(!info.isJS && !!info.typeElements, "Invalid actionName/JS combo");
83isJS: boolean; selection: TypeNode; firstStatement: Statement; typeParameters: readonly TypeParame… property
87isJS: boolean; selection: TypeNode; firstStatement: Statement; typeParameters: readonly TypeParame… property
94 const isJS = isSourceFileJS(file); constant
109 return { isJS, selection, firstStatement, typeParameters, typeElements };
DextractSymbol.ts864 const isJS = isInJSFile(scope); constant
874 if (!isJS) {
910 if (isExpression(node) && !isJS) {
924 … const modifiers: Modifier[] = isJS ? [] : [factory.createModifier(SyntaxKind.PrivateKeyword)];
1179 const isJS = isInJSFile(scope); constant
1181 let variableType = isJS || !checker.isContextSensitive(node)
1194 Debug.assert(!isJS, "Cannot extract to a JS class"); // See CannotExtractToJSClass
/third_party/typescript/src/services/codefixes/
DimportFixes.ts997 const isJS = isInJSFile(importingFile); constant
1000 if (!isJS && getEmitModuleKind(compilerOptions) >= ModuleKind.ES2015) {
1005 if (isJS) {
/third_party/node/deps/minimatch/src/
DREADME.md151 var isJS = minimatch(file, '*.js', { matchBase: true })