Skip to content

Commit

Permalink
Add input/output test
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverdunk committed Mar 28, 2020
1 parent c7b172d commit 738b71d
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
@@ -0,0 +1,26 @@
function decorate(value: boolean) {
return function(
target: any,
propertyKey: string,
descriptor: PropertyDescriptor
) {};
}

abstract class A {
@decorate(false)
private decoratedMember: boolean;

abstract myMethod(): void;
}

class B extends A {
constructor() {
super();
}

myMethod(): void {

}
}

const b = new B();

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 738b71d

Please sign in to comment.