Searched refs:OtherThing (Results 1 – 5 of 5) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | jsDeclarationsExportSpecifierNonlocal.js | 5 export class OtherThing {} class 7 export { Thing, OtherThing as default } from "./source"; 13 exports.OtherThing = exports.Thing = void 0; 20 var OtherThing = /** @class */ (function () { 21 function OtherThing() { class in OtherThing 23 return OtherThing; 25 exports.OtherThing = OtherThing; 32 …operty(exports, "default", { enumerable: true, get: function () { return source_1.OtherThing; } }); 38 export class OtherThing { 41 export { Thing, OtherThing as default } from "./source";
|
D | jsDeclarationsExportSpecifierNonlocal.types | 5 export class OtherThing {} 6 >OtherThing : OtherThing 9 export { Thing, OtherThing as default } from "./source"; 11 >OtherThing : typeof import("tests/cases/conformance/jsdoc/declarations/source").OtherThing 12 >default : typeof import("tests/cases/conformance/jsdoc/declarations/source").OtherThing
|
D | jsDeclarationsExportSpecifierNonlocal.symbols | 5 export class OtherThing {} 6 >OtherThing : Symbol(OtherThing, Decl(source.js, 0, 21)) 9 export { Thing, OtherThing as default } from "./source"; 11 >OtherThing : Symbol(OtherThing, Decl(source.js, 0, 21))
|
/third_party/typescript/tests/cases/conformance/jsdoc/declarations/ |
D | jsDeclarationsExportSpecifierNonlocal.ts | 8 export class OtherThing {} class 10 export { Thing, OtherThing as default } from "./source";
|
/third_party/python/Lib/test/ |
D | test_inspect.py | 1837 class OtherThing(Thing): class 1840 something = OtherThing() 1889 class OtherThing(Thing): class 1892 self.assertEqual(inspect.getattr_static(OtherThing, 'x'), Thing.x) 1916 class OtherThing(object, metaclass=sub): class 1918 self.assertEqual(inspect.getattr_static(OtherThing, 'attr'), 'foo') 1920 class OtherOtherThing(OtherThing): 1941 class OtherThing(Thing): class 1945 self.assertEqual(inspect.getattr_static(OtherThing(), 'x'), Thing.x)
|