/third_party/typescript/tests/cases/compiler/ |
D | staticFieldWithInterfaceContext.ts | 6 static x = { a: "a" }; variable 11 let c2: I = class { static [ex] = { a: "a" }; }; variable 16 let { c: c3 }: { c: I } = { c: class { static x = { a: "a" } } }; variable 17 let { c: c4 = class { static x = { a: "a" } }}: { c?: I } = { }; variable 18 let { c: c5 = class { static x = { a: "a" } }}: { c?: I } = { c: class { static x = { a: "a" } } }; variable 19 let [ c6 ]: [I] = [class { static x = { a: "a" } }]; variable 20 let [ c7 ]: I[] = [class { static x = { a: "a" } }]; variable 22 let [ c8 = class { static x = { a: "a" } } ]: [I?] = []; variable 23 let [ c9 = class { static x = { a: "a" } } ]: I[] = []; variable 24 let [ c10 = class { static x = { a: "a" } } ]: [I?] = [class { static x = { a: "a" } }]; variable [all …]
|
D | classExpressionWithStaticProperties2.ts | 3 static a = 1; variable 5 static c = { variable
|
D | classExpressionWithStaticPropertiesES62.ts | 3 static a = 1; variable 5 static c = { variable
|
D | emitClassExpressionInDeclarationFile2.ts | 3 static getTags() { } variable 5 private static ps = -1 variable
|
D | emitClassExpressionInDeclarationFile.ts | 3 static getTags() { } variable 7 static getTags(c: C): C { return c } variable
|
D | ambientNameRestrictions.ts | 2 export var static: any; variable
|
D | strictModeEnumMemberNameReserved.ts | 6 const x1: E.static = E.static;
|
D | classExpressionWithDecorator1.ts | 2 var v = @decorate class C { static p = 1 }; variable
|
D | classExpressionWithStaticProperties1.ts | 2 static a = 1; variable
|
D | classExpressionWithStaticPropertiesES61.ts | 3 static a = 1; variable
|
D | classInConvertedLoopES5.ts | 6 static factory = () => new RowClass(); constant
|
/third_party/typescript/tests/baselines/reference/ |
D | parserMemberFunctionDeclarationAmbiguities1.js | 4 static() {} method in C 7 public static() {} method in C 10 public static static() {} method in C 13 static static() {} method in C
|
D | parser642331_1.js | 5 constructor (static) { } argument 12 function test(static) { argument
|
D | constructorStaticParamNameErrors.js | 5 constructor (static) { } argument 12 function test(static) { argument
|
D | parser642331.js | 3 constructor (static) { } argument 9 function test(static) { argument
|
D | constructorStaticParamName.js | 5 constructor (static) { } argument 12 function test(static) { argument
|
D | strictModeReservedWordInClassDeclaration.js | 5 constructor(private, public, static) { argument 14 foo1(private, static, public) { argument 48 function Foo(private, public, static) { argument 58 C.prototype.foo1 = function (private, static, public) { argument
|
D | useBeforeDeclaration_jsx.js | 14 static z = () => <b></b>; function
|
D | augmentExportEquals5.js | 62 var static: any; variable
|
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/ |
D | staticPropertyNameConflicts.ts | 63 static name: number; // error variable 68 static name() {} // error variable 74 static length: number; // error variable 79 static length() {} // error variable 85 static prototype: number; // error variable 90 static prototype() {} // error variable 96 static caller: number; // error variable 101 static caller() {} // error variable 107 static arguments: number; // error variable 112 static arguments() {} // error variable
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/ |
D | greedyh.asm | 32 static void label 251 static void label
|
/third_party/typescript_eslint/packages/shared-fixtures/fixtures/javascript/classes/ |
D | class-method-named-static.src.js | 1 class A {static(){};}; method in A
|
D | class-static-method-named-static.src.js | 1 class A {static static(){};}; method in A
|
/third_party/flutter/flutter/dev/integration_tests/ios_add2app/ios_add2app/ |
D | HybridViewController.m | 14 static NSString *_kChannel = @"increment"; category
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | egd_tables.py | 54 def emit(self, filp, name, static=True): argument 106 def emit(self, filp, name, static=True): argument
|