File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
javascript/ql/test/library-tests/PackageExports Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change
1
+ export class PublicClass {
2
+ protected constructor ( p ) { }
3
+ private privateMethod ( p ) { }
4
+ protected protectedMethod ( p ) { }
5
+ _kindaPrivateMethod ( p ) { }
6
+ $kindaPrivateMethod ( p ) { }
7
+ #esPrivateMethod( p ) { }
8
+
9
+ _kindaPrivateFieldMethod = ( p ) => { } ;
10
+ private privateFieldMethod = ( p ) => { } ;
11
+ }
Original file line number Diff line number Diff line change @@ -15,3 +15,4 @@ getAnExportedValue
15
15
| lib1/reexport/a.js:1:1:3:1 | <toplevel> | reexported | lib1/reexport/a.js:2:17:2:40 | functio ... ed() {} |
16
16
| lib1/reexport/b.js:1:1:6:1 | <toplevel> | base | lib1/reexport/b.js:4:11:4:28 | function base() {} |
17
17
| lib1/reexport/b.js:1:1:6:1 | <toplevel> | reexported | lib1/reexport/a.js:2:17:2:40 | functio ... ed() {} |
18
+ | notPublic.ts:1:1:12:0 | <toplevel> | PublicClass | notPublic.ts:1:8:11:1 | class P ... > {};\\n} |
You can’t perform that action at this time.
0 commit comments