Skip inlining and emit a warning when trying to inline a function into itself

This commit is contained in:
dcodeIO
2018-07-14 18:01:19 +02:00
parent 3b0fd9aac2
commit 4b8500355a
12 changed files with 52 additions and 9 deletions

View File

@ -0,0 +1,4 @@
@inline
export function foo(): void {
foo();
}