Skip to content

Commit

Permalink
Fix bug in module member checking
Browse files Browse the repository at this point in the history
Previously wasn’t allowing `const`, `let`, or `var` for any member (even properties).
  • Loading branch information
kdubb committed Sep 5, 2018
1 parent 71564fb commit 57daa5c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/io/outfoxx/typescriptpoet/ModuleSpec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,7 @@ private constructor(
Modifier.READONLY,
Modifier.GET,
Modifier.SET,
Modifier.STATIC,
Modifier.CONST,
Modifier.LET,
Modifier.VAR
Modifier.STATIC
)
}

Expand Down

0 comments on commit 57daa5c

Please sign in to comment.