File tree Expand file tree Collapse file tree
javascript/ql/test/library-tests/ModelGeneration Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ typeModel
1616| (return-this).FluentInterface.prototype.foo | (return-this).FluentInterface.prototype | Member[foo] |
1717| (return-this).FluentInterface.prototype.notFluent | (return-this).FluentInterface.prototype | Member[notFluent] |
1818| (return-this).FluentInterface.prototype.notFluent2 | (return-this).FluentInterface.prototype | Member[notFluent2] |
19+ | (root-function).PublicClass | root-function | Member[PublicClass] |
20+ | (root-function).PublicClass.prototype | (root-function).PublicClass | Instance |
21+ | (root-function).PublicClass.prototype | root-function | ReturnValue |
22+ | (root-function).PublicClass.prototype.method | (root-function).PublicClass.prototype | Member[method] |
1923| (semi-internal-class).PublicClass | semi-internal-class | Member[PublicClass] |
2024| (semi-internal-class).PublicClass.prototype | (semi-internal-class).PublicClass | Instance |
2125| (semi-internal-class).PublicClass.prototype | (semi-internal-class).SemiInternalClass.prototype.method | ReturnValue |
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " root-function" ,
3+ "main" : " root-function.js"
4+ }
Original file line number Diff line number Diff line change 1+ class C {
2+ method ( ) { }
3+ }
4+
5+ module . exports = function ( ) {
6+ return new C ( ) ;
7+ }
8+
9+ module . exports . PublicClass = C ;
You can’t perform that action at this time.
0 commit comments