Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Kurimoto committed Oct 22, 2019
1 parent d1ba20c commit b3ed080
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions example/sample-class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,32 @@ export class SampleClass {
param1: string;
readonly param2: string;

/**
* ignored
*/
constructor(param1: string, param2: string) {
this.param1 = param1;
this.param2 = param2;
this.func2();
}

/**
* ignored
*/
static staticFunction(hpge: string): void {

}

/**
* ignored
*/
func1(): string[] {
return [];
}

/**
* ignored
*/
private func2() {

}
Expand Down
3 changes: 3 additions & 0 deletions example/sub/sub-class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export class SubClass {
*/
subClassParamUnion: null | undefined | string;

/**
* ignored
*/
constructor() {
this.subClassParam1 = '';
this.subClassParam2 = {};
Expand Down

0 comments on commit b3ed080

Please sign in to comment.