diff options
author | Profpatsch <mail@profpatsch.de> | 2020-12-19T22·05+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-01-01T22·40+0000 |
commit | 361aa2aac2fb8ec0989d449e835c19d681a0025b (patch) | |
tree | c55aee8d544f3ac4c30f88f4d07df50b1b108f5e | |
parent | 5a6f781c3efa21460657d14ee9c84fc4bb7e4832 (diff) |
feat(emacs-tree-sitter-move): shell and json test files r/2048
Change-Id: Idadb58a935abdbfa99327ba79de8b33d38b8c722 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2264 Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
-rw-r--r-- | users/Profpatsch/emacs-tree-sitter-move/test.json | 14 | ||||
-rw-r--r-- | users/Profpatsch/emacs-tree-sitter-move/test.sh | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/users/Profpatsch/emacs-tree-sitter-move/test.json b/users/Profpatsch/emacs-tree-sitter-move/test.json new file mode 100644 index 000000000000..d9f8075976d6 --- /dev/null +++ b/users/Profpatsch/emacs-tree-sitter-move/test.json @@ -0,0 +1,14 @@ +{ + "foo": { + "x": [ 1, 2, 3, 4 ], + "bar": "test" + }, + "foo": { + "x": [ 1, 2, 3, 4 ], + "bar": "test" + }, + "foo": { + "x": [ 1, 2, 3, 4 ], + "bar": "test" + } +} diff --git a/users/Profpatsch/emacs-tree-sitter-move/test.sh b/users/Profpatsch/emacs-tree-sitter-move/test.sh new file mode 100644 index 000000000000..681081f5909d --- /dev/null +++ b/users/Profpatsch/emacs-tree-sitter-move/test.sh @@ -0,0 +1,14 @@ +function foo () { + local x=123 +} + +function bar () { + local x=123 +} + +echo abc def \ + gef gef + +printf \ + "%s\n" \ + haha |