1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00

modify test files

Co-Authored-By: Rick Winfrey <rick.winfrey@gmail.com>
This commit is contained in:
joshvera 2018-11-13 14:09:20 -05:00
parent ddb9b31a09
commit fb5e4400a1
2 changed files with 5 additions and 7 deletions

View File

@ -1,10 +1,5 @@
export { baz } from "./a"
export { foo }
function bar() {
return "this is the bar function";
}
function foo() {
return "this is the foo function";
}
export { foo, bar }

View File

@ -0,0 +1,3 @@
import { foo } from "./foo"
foo()