| /third_party/typescript_eslint/tests/integration/fixtures/markdown/ |
| D | test.js.snap | 16 "message": "Unexpected console statement.", 19 "ruleId": "no-console", 30 "ruleId": "@typescript-eslint/no-explicit-any", 62 "message": "Unexpected console statement.", 65 "ruleId": "no-console", 73 "message": "Unexpected console statement.", 76 "ruleId": "no-console", 87 "ruleId": "@typescript-eslint/no-explicit-any", 119 "message": "Unexpected console statement.", 122 "ruleId": "no-console", [all …]
|
| D | Doc.md | 3 expected no-console error: 9 console.log('test'); 22 expected no-explicit-any error: 23 expected no-console error: 29 console.log('test'); 42 expected no-console error: 46 console.log('test'); 50 expected no-explicit-any error: 51 expected no-console error: 55 console.log('test'); [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | collisionThisExpressionAndParameter.types | 8 var _this = 10; // Local var. No this capture in x(), so no conflict. 54 var _this = 10; // Local var. No this capture in x(), so no conflict. 58 function inner(_this: number) { // No Error 66 var lamda = (_this: number) => { // No Error 68 >(_this: number) => { // No Error } : (_this: number) => void 72 z1(_this: number) { // No Error 106 declare var console: { 107 >console : { log(msg: any): any; } 118 x => { console.log(this.x); }; 119 >x => { console.log(this.x); } : (x: any) => void [all …]
|
| D | collisionThisExpressionAndParameter.symbols | 8 var _this = 10; // Local var. No this capture in x(), so no conflict. 47 var _this = 10; // Local var. No this capture in x(), so no conflict. 50 function inner(_this: number) { // No Error 58 var lamda = (_this: number) => { // No Error 63 z1(_this: number) { // No Error 92 declare var console: { 93 >console : Symbol(console, Decl(collisionThisExpressionAndParameter.ts, 41, 11), Decl(collisionThis… 104 x => { console.log(this.x); }; 106 >console.log : Symbol(log, Decl(collisionThisExpressionAndParameter.ts, 41, 22)) 107 >console : Symbol(console, Decl(collisionThisExpressionAndParameter.ts, 41, 11), Decl(collisionThis… [all …]
|
| D | exportImportCanSubstituteConstEnumForValue.types | 19 No, 20 >No : DialogResult.No 73 * For some reason javascript code is emitted for this re-exported const enum. 81 * Not exported to show difference. No javascript is emmitted (as expected) 89 * Re-exporting a function type to show difference. No javascript is emmitted (as expected) 107 console.log(value1); 108 >console.log(value1) : void 109 >console.log : (...data: any[]) => void 110 >console : Console 120 console.log(value2); [all …]
|
| D | exportImportCanSubstituteConstEnumForValue.symbols | 19 No, 20 >No : Symbol(ReExportedEnum.No, Decl(exportImportCanSubstituteConstEnumForValue.ts, 5, 15)) 76 * For some reason javascript code is emitted for this re-exported const enum. 84 * Not exported to show difference. No javascript is emmitted (as expected) 92 * Re-exporting a function type to show difference. No javascript is emmitted (as expected) 110 console.log(value1); 111 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 112 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 113 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 122 console.log(value2); [all …]
|
| D | collisionThisExpressionAndParameter.js | 4 var _this = 10; // Local var. No this capture in x(), so no conflict. 21 var _this = 10; // Local var. No this capture in x(), so no conflict. 22 function inner(_this: number) { // No Error 26 var lamda = (_this: number) => { // No Error 29 z1(_this: number) { // No Error 43 declare var console: { 48 x => { console.log(this.x); }; 52 constructor(_this: number); // no error - no code gen 53 z(_this: number); // no error - no code gen 55 declare function f2(_this: number); // no error [all …]
|
| D | forLoopEndingMultilineComments.js | 11 /* eslint-disable no-console */ 15 /* eslint-enable no-console */ 31 /* eslint-disable no-console */ 36 /* eslint-enable no-console */
|
| D | inferenceShouldFailOnEvolvingArrays.symbols | 15 console.log(arg.length); 16 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 17 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 18 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 19 >arg.length : Symbol(String.length, Decl(lib.es5.d.ts, --, --)) 21 >length : Symbol(String.length, Decl(lib.es5.d.ts, --, --)) 32 z = logLength(42); // no error; T is inferred as `any` 47 console.log(arg[0].length); 48 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 49 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) [all …]
|
| D | importsNotUsedAsValues_error.symbols | 27 console.log(a, b); 28 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 29 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 30 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 48 console.log(a, b); 49 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 50 >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) 51 >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) 68 console.log(a, b); 69 >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) [all …]
|
| /third_party/typescript_eslint/packages/eslint-plugin/docs/rules/ |
| D | no-confusing-void-expression.md | 1 # Requires expressions of type void to appear in statement position (`no-confusing-void-expression`) 17 console.log(alert('Are you sure?')); 22 // it looks like we are returning the result of `console.error` (fixable) 25 return console.error('Nothing to do!'); 28 console.log('Doing a thing...'); 40 console.log(confirm('Are you sure?')); 50 console.error('Nothing to do!'); 54 console.log('Doing a thing...'); 58 cond && console.log('true'); 59 cond || console.error('false'); [all …]
|
| /third_party/curl/projects/Windows/VC6/src/ |
| D | curl.tmpl | 1 # Microsoft Developer Studio Project File - Name="curl" - Package Owner=<4> 5 # TARGTYPE "Win32 (x86) Console Application" 0x0103 7 CFG=curl - Win32 LIB Debug 16 !MESSAGE NMAKE /f "curl.mak" CFG="curl - Win32 LIB Debug" 20 !MESSAGE "curl - Win32 DLL Debug" (based on "Win32 (x86) Console Application") 21 !MESSAGE "curl - Win32 DLL Debug DLL OpenSSL" (based on "Win32 (x86) Console Application") 22 !MESSAGE "curl - Win32 DLL Debug DLL OpenSSL DLL LibSSH2" (based on "Win32 (x86) Console Applicatio… 23 !MESSAGE "curl - Win32 DLL Debug DLL Windows SSPI" (based on "Win32 (x86) Console Application") 24 !MESSAGE "curl - Win32 DLL Debug DLL Windows SSPI DLL WinIDN" (based on "Win32 (x86) Console Applic… 25 !MESSAGE "curl - Win32 DLL Release" (based on "Win32 (x86) Console Application") [all …]
|
| /third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
| D | system_file.js | 7 * http://www.apache.org/licenses/LICENSE-2.0 21 …console.warn("file.move interface mocked in the Previewer. How this interface works on the Preview… 27 …console.warn("file.copy interface mocked in the Previewer. How this interface works on the Preview… 33 …console.warn("file.list interface mocked in the Previewer. How this interface works on the Preview… 37 uri: '[PC Preview]: no file', 38 lastModifiedTime: "[PC Preview]: no file", 39 length: "[PC Preview]: no file", 47 …console.warn("file.get interface mocked in the Previewer. How this interface works on the Previewe… 50 uri: '[PC Preview]: no file', 51 lastModifiedTime: "[PC Preview]: no file", [all …]
|
| /third_party/node/doc/api/ |
| D | process.md | 3 <!-- introduced_in=v0.10.0 --> 4 <!-- type=global --> 6 <!-- source_link=lib/process.js --> 22 <!-- YAML 24 --> 27 no additional work to schedule. Normally, the Node.js process will exit when 28 there is no work scheduled, but a listener registered on the `'beforeExit'` 43 console.log('Process beforeExit event with code: ', code); 47 console.log('Process exit event with code: ', code); 50 console.log('This message is displayed first.'); [all …]
|
| D | buffer.md | 3 <!--introduced_in=v0.1.90--> 5 > Stability: 2 - Stable 7 <!-- source_link=lib/buffer.js --> 9 `Buffer` objects are used to represent a fixed-length sequence of bytes. Many 20 // Creates a zero-filled Buffer of length 10. 39 const buf5 = Buffer.from([257, 257.5, -255, '1']); 41 // Creates a Buffer containing the UTF-8-encoded bytes for the string 'tést': 46 // Creates a Buffer containing the Latin-1 bytes [0x74, 0xe9, 0x73, 0x74]. 51 <!-- YAML 53 - version: v14.18.0 [all …]
|
| /third_party/node/deps/npm/node_modules/nopt/bin/ |
| D | nopt.js | 8 , "num-list": [Number, Array] 9 , "str-list": [String, Array] 10 , "bool-list": [Boolean, Array] 17 , shorthands = { s: [ "--str", "astring" ] 18 , b: [ "--bool" ] 19 , nb: [ "--no-bool" ] 20 , tft: [ "--bool-list", "--no-bool-list", "--bool-list", "true" ] 21 , "?": ["--help"] 22 , h: ["--help"] 23 , H: ["--help"] [all …]
|
| /third_party/node/test/parallel/ |
| D | test-console.js | 17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 46 ['No such label \'noLabel\' for console.timeLog()'], 47 ['No such label \'noLabel\' for console.timeEnd()'], 49 ['No such label \'default\' for console.timeLog()'], 50 ['No such label \'default\' for console.timeEnd()'], 51 ['Label \'default\' already exists for console.time()'], 52 ['Label \'test\' already exists for console.time()'], 56 console.countReset('noLabel'); 57 console.timeLog('noLabel'); 58 console.timeEnd('noLabel'); [all …]
|
| D | test-stream-readable-async-iterators.js | 65 for await (const d of readable) { // eslint-disable-line no-unused-vars 85 console.log('read without for..await'); 100 (item, i) => assert.strictEqual(item.value, 'hello-' + i), 5)); 103 readable.push('hello-0'); 104 readable.push('hello-1'); 105 readable.push('hello-2'); 106 readable.push('hello-3'); 107 readable.push('hello-4'); 115 console.log('read without for..await deferred'); 128 readable.push('hello-0'); [all …]
|
| D | test-fs-realpath.js | 17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 63 fs.mkdirSync(path.join(targetsAbsDir, 'nested-index')); 64 fs.mkdirSync(path.join(targetsAbsDir, 'nested-index', 'one')); 65 fs.mkdirSync(path.join(targetsAbsDir, 'nested-index', 'two')); 83 // sub-tests: 101 console.log('test_simple_relative_symlink'); 103 common.printSkipMessage('symlink test (no privs)'); 112 console.log('fs.symlinkSync(%j, %j, %j)', t[1], t[0], 'file'); 124 console.log('test_simple_absolute_symlink'); 130 console.log('using type=%s', type); [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | collisionThisExpressionAndParameter.ts | 4 var _this = 10; // Local var. No this capture in x(), so no conflict. 21 var _this = 10; // Local var. No this capture in x(), so no conflict. 22 function inner(_this: number) { // No Error 26 var lamda = (_this: number) => { // No Error 29 z1(_this: number) { // No Error 43 declare var console: { variable 48 x => { console.log(this.x); }; 52 constructor(_this: number); // no error - no code gen 53 z(_this: number); // no error - no code gen 55 declare function f2(_this: number); // no error [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/incremental/ |
| D | when-file-with-ambient-global-declaration-file-is-deleted-incremental.js | 3 /// <reference no-default-lib="true"/> 15 declare const console: { log(msg: any): void; }; 21 console.log(Config.value); 27 /a/lib/tsc.js -i 53 console.log(Config.value); 61 …-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface … 62 …-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface … 66 "version": "-6314871648-declare namespace Config { const value: string;} ", 67 "signature": "-6314871648-declare namespace Config { const value: string;} ", 71 "version": "5371023861-console.log(Config.value);", [all …]
|
| /third_party/node/test/sequential/ |
| D | test-deprecation-flags.js | 17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 31 fixtures.path('deprecated-userland-function.js'); 34 fixtures.path('deprecated-userland-class.js'); 37 fixtures.path('deprecated-userland-subclass.js'); 40 const noDep = ['--no-deprecation', depmod]; 41 const traceDep = ['--trace-deprecation', depmod]; 44 console.error('normal: show deprecation warning'); 48 console.log('normal ok'); 52 console.error('--no-deprecation: silence deprecations'); 56 console.log('silent ok'); [all …]
|
| /third_party/node/deps/npm/lib/ |
| D | completion.js | 16 var isWindowsShell = require('./utils/is-windows-shell.js') 22 var fs = require('graceful-fs') 52 e.errno = require('constants').ENOTSUP // eslint-disable-line node/no-deprecated-api 63 console.error(process.env.COMP_CWORD) 64 console.error(process.env.COMP_LINE) 65 console.error(process.env.COMP_POINT) 81 while (partialWord.substr(0, i) !== partialLine.substr(-1 * i) && i > 0) { 82 i-- 102 console.error(opts) 104 if (partialWords.slice(0, -1).indexOf('--') === -1) { [all …]
|
| /third_party/node/deps/npm/node_modules/socks/docs/ |
| D | migratingFromV1.md | 9 - In an options object, the proxy 'command' is now required and does not default to 'connect'. 10 - **In an options object, 'target' is now known as 'destination'.** 11 - Sockets are no longer paused after a SOCKS connection is made, so socket.resume() is no longer re… 12 - In v2, only the 'connect' command is supported via the factory SocksClient.createConnection funct… 13 - In v2, the factory SocksClient.createConnection function callback is called with a single object … 14 - A SOCKS http/https agent is no longer bundled into the library. 38 console.log(err); 42 console.log(data.length); 43 console.log(data); 74 console.log(err); [all …]
|
| /third_party/typescript_eslint/packages/eslint-plugin/tests/rules/ |
| D | no-for-in-array.test.ts | 1 import { AST_NODE_TYPES } from '@typescript-eslint/experimental-utils'; 2 import rule from '../../src/rules/no-for-in-array'; 12 parser: '@typescript-eslint/parser', 15 ruleTester.run('no-for-in-array', rule, { 19 console.log(x); 24 console.log(x); 33 console.log(x); 47 console.log(x); 61 console.log(x); 76 console.log(x); [all …]
|