Home
last modified time | relevance | path

Searched refs:_bar (Results 1 – 25 of 27) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DsetterBeforeGetter.symbols5 private _bar: { a: string; };
6 >_bar : Symbol(Foo._bar, Decl(setterBeforeGetter.ts, 0, 11))
15 this._bar = thing;
16 >this._bar : Symbol(Foo._bar, Decl(setterBeforeGetter.ts, 0, 11))
18 >_bar : Symbol(Foo._bar, Decl(setterBeforeGetter.ts, 0, 11))
25 return this._bar;
26 >this._bar : Symbol(Foo._bar, Decl(setterBeforeGetter.ts, 0, 11))
28 >_bar : Symbol(Foo._bar, Decl(setterBeforeGetter.ts, 0, 11))
DsetterBeforeGetter.types5 private _bar: { a: string; };
6 >_bar : { a: string; }
15 this._bar = thing;
16 >this._bar = thing : { a: string; }
17 >this._bar : { a: string; }
19 >_bar : { a: string; }
26 return this._bar;
27 >this._bar : { a: string; }
29 >_bar : { a: string; }
DdeclarationEmitInlinedDistributiveConditional.types6 const a = dropPrivateProps1({foo: 42, _bar: 'secret'}); // type is {foo: number}
8 >dropPrivateProps1({foo: 42, _bar: 'secret'}) : { foo: number; }
10 >{foo: 42, _bar: 'secret'} : { foo: number; _bar: string; }
13 >_bar : string
16 //a._bar // error: _bar does not exist <==…
17 const b = dropPrivateProps2({foo: 42, _bar: 'secret'}); // type is {foo: number, _bar: string}
19 >dropPrivateProps2({foo: 42, _bar: 'secret'}) : { foo: number; }
21 >{foo: 42, _bar: 'secret'} : { foo: number; _bar: string; }
24 >_bar : string
27 //b._bar // no error, type of b._bar is string <==…
DfindAllRefsWithLeadingUnderscoreNames1.baseline.jsonc3 // /*FIND ALL REFS*/public [|_bar|]() { return 0; }
7 // x.[|_bar|];
16 "name": "(method) Foo._bar(): number",
47 "text": "_bar",
105 // public /*FIND ALL REFS*/[|_bar|]() { return 0; }
109 // x.[|_bar|];
118 "name": "(method) Foo._bar(): number",
149 "text": "_bar",
207 // public [|_bar|]() { return 0; }
211 // x./*FIND ALL REFS*/[|_bar|];
[all …]
DdeclarationEmitInlinedDistributiveConditional.symbols6 const a = dropPrivateProps1({foo: 42, _bar: 'secret'}); // type is {foo: number}
10 >_bar : Symbol(_bar, Decl(test.ts, 1, 37))
12 //a._bar // error: _bar does not exist <==…
13 const b = dropPrivateProps2({foo: 42, _bar: 'secret'}); // type is {foo: number, _bar: string}
17 >_bar : Symbol(_bar, Decl(test.ts, 3, 37))
19 //b._bar // no error, type of b._bar is string <==…
DemitClassDeclarationWithConstructorInES6.symbols28 _bar: string;
29 >_bar : Symbol(B._bar, Decl(emitClassDeclarationWithConstructorInES6.ts, 10, 24))
50 return this._bar;
51 >this._bar : Symbol(B._bar, Decl(emitClassDeclarationWithConstructorInES6.ts, 10, 24))
53 >_bar : Symbol(B._bar, Decl(emitClassDeclarationWithConstructorInES6.ts, 10, 24))
DsetterBeforeGetter.js4 private _bar: { a: string; };
7 this._bar = thing;
10 return this._bar;
21 return this._bar;
25 this._bar = thing;
DemitClassDeclarationWithMethodInES6.symbols5 _bar: string;
6 >_bar : Symbol(D._bar, Decl(emitClassDeclarationWithMethodInES6.ts, 0, 9))
28 return this._bar;
29 >this._bar : Symbol(D._bar, Decl(emitClassDeclarationWithMethodInES6.ts, 0, 9))
31 >_bar : Symbol(D._bar, Decl(emitClassDeclarationWithMethodInES6.ts, 0, 9))
DemitClassDeclarationWithConstructorInES6.types29 _bar: string;
30 >_bar : string
54 return this._bar;
55 >this._bar : string
57 >_bar : string
DemitClassDeclarationWithMethodInES6.types5 _bar: string;
6 >_bar : string
29 return this._bar;
30 >this._bar : string
32 >_bar : string
DfindAllRefsWithLeadingUnderscoreNames5.baseline.jsonc3 // public _bar;
10 // x._bar;
103 // public _bar;
110 // x._bar;
203 // public _bar;
210 // x._bar;
DfindAllRefsWithLeadingUnderscoreNames6.baseline.jsonc3 // public _bar;
10 // x._bar;
103 // public _bar;
110 // x._bar;
203 // public _bar;
210 // x._bar;
DdeclarationEmitInlinedDistributiveConditional.js5 const a = dropPrivateProps1({foo: 42, _bar: 'secret'}); // type is {foo: number} property
7 const b = dropPrivateProps2({foo: 42, _bar: 'secret'}); // type is {foo: number, _bar: string} property
37 var a = (0, api_1.dropPrivateProps1)({ foo: 42, _bar: 'secret' }); // type is {foo: number} property
39 var b = (0, api_1.dropPrivateProps2)({ foo: 42, _bar: 'secret' }); // type is {foo: number, _bar: s… property
DemitClassDeclarationWithConstructorInES6.js13 _bar: string;
20 return this._bar; field in B
39 return this._bar;
DemitClassDeclarationWithMethodInES6.js3 _bar: string;
9 return this._bar;
32 return this._bar;
DsetterBeforeGetter.errors.txt8 private _bar: { a: string; };
13 this._bar = thing;
18 return this._bar;
/third_party/typescript/tests/cases/compiler/
DsetterBeforeGetter.ts3 private _bar: { a: string; }; property in Foo
6 this._bar = thing;
9 return this._bar;
DdeclarationEmitInlinedDistributiveConditional.ts4 const a = dropPrivateProps1({foo: 42, _bar: 'secret'}); // type is {foo: number}
6 const b = dropPrivateProps2({foo: 42, _bar: 'secret'}); // type is {foo: number, _bar: string}
/third_party/typescript/tests/cases/conformance/es6/classDeclaration/
DemitClassDeclarationWithMethodInES6.ts3 _bar: string; property in D
9 return this._bar;
DemitClassDeclarationWithConstructorInES6.ts13 _bar: string; property in B
20 return this._bar;
/third_party/python/Lib/test/
Dtest_rlcompleter.py106 _bar = 0 variable in TestRlcompleter.test_property_method_not_called.Foo
112 return self._bar
/third_party/PyYAML/tests/data/
Dconstruct-python-object.data7 - !!python/object:test_constructor.AState { _foo: 1, _bar: two, _baz: [3,3,3] }
/third_party/node/test/parallel/
Dtest-runner-mocking.js154 _bar: 9, property
159 return this._bar;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DREADME.txt432 _bar:
440 _bar:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DREADME.txt150 _bar:

12