Skip to content

Commit

Permalink
split snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Frezc committed Jan 4, 2021
1 parent 58324a0 commit b631e7a
Show file tree
Hide file tree
Showing 15 changed files with 1,974 additions and 482 deletions.

This file was deleted.

@@ -0,0 +1,23 @@
//// @emitDecoratorMetadata = true

function deco(...param: any) {}

class T {}
const keyName = 'foo';

class A {
@deco
set b(b: T) {}

set ['a'](a: T) {}
@deco
get a() {}

set [0](a: T) {}
@deco
get [0]() {}

set [keyName](a: T) {}
@deco
get [keyName]() {}
}

0 comments on commit b631e7a

Please sign in to comment.