Home
last modified time | relevance | path

Searched refs:OtherThing (Results 1 - 2 of 2) sorted by relevance

/third_party/typescript/tests/baselines/reference/
H A DjsDeclarationsExportSpecifierNonlocal.js5 export class OtherThing {}
7 export { Thing, OtherThing as default } from "./source";
13 exports.OtherThing = exports.Thing = void 0;
20 var OtherThing = /** @class */ (function () {
21 function OtherThing() {
23 return OtherThing;
25 exports.OtherThing = OtherThing;
32 Object.defineProperty(exports, "default", { enumerable: true, get: function () { return source_1.OtherThing; } });
38 export class OtherThing {
[all...]
/third_party/python/Lib/test/
H A Dtest_inspect.py1868 class OtherThing(Thing): class
1871 something = OtherThing()
1920 class OtherThing(Thing): class
1923 self.assertEqual(inspect.getattr_static(OtherThing, 'x'), Thing.x)
1947 class OtherThing(object, metaclass=sub): class
1949 self.assertEqual(inspect.getattr_static(OtherThing, 'attr'), 'foo')
1951 class OtherOtherThing(OtherThing):
1972 class OtherThing(Thing): class
1976 self.assertEqual(inspect.getattr_static(OtherThing(), 'x'), Thing.x)

Completed in 8 milliseconds