Searched refs:isJS (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/npm/node_modules/pacote/lib/util/ |
D | npm.js | 5 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/ |
D | extractType.ts | 35 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"); 83 …isJS: boolean; selection: TypeNode; firstStatement: Statement; typeParameters: readonly TypeParame… property 87 …isJS: boolean; selection: TypeNode; firstStatement: Statement; typeParameters: readonly TypeParame… property 94 const isJS = isSourceFileJS(file); constant 109 return { isJS, selection, firstStatement, typeParameters, typeElements };
|
D | extractSymbol.ts | 864 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/ |
D | importFixes.ts | 997 const isJS = isInJSFile(importingFile); constant 1000 if (!isJS && getEmitModuleKind(compilerOptions) >= ModuleKind.ES2015) { 1005 if (isJS) {
|
/third_party/node/deps/minimatch/src/ |
D | README.md | 151 var isJS = minimatch(file, '*.js', { matchBase: true })
|