Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(syntax.json): Move language .move #255

Merged
merged 6 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ Only a single milestone can be specified. If the milestone does not exist, it wi
- Lua
- Makefile
- Markdown
- Move
- Nix
- Objective-C
- Org Mode
Expand Down
18 changes: 17 additions & 1 deletion syntax.json
Original file line number Diff line number Diff line change
Expand Up @@ -878,5 +878,21 @@
}
}
]
},
{
"language": "Move",
"markers": [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
}
]
]
36 changes: 31 additions & 5 deletions tests/test_closed.diff
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ index 2996176..7545ccf 100644
@@ -1,12 +1,9 @@
-# TODO change name.
NAME = asm

-# TODO source files must be explicitly named.
SRC = $(shell find mandatory/src -name "*.asm")
OBJ = $(patsubst src/%.asm, obj/%.o, $(SRC))
Expand All @@ -419,7 +419,7 @@ index 2996176..7545ccf 100644
$(NAME): $(OBJ)
- # TODO create the directory.
$(AR) rc $@ $(OBJ)

diff --git a/tests/example_file.liquid b/tests/example_file.liquid
index 0000000..7cccc5b 100644
--- a/tests/example_file.liquid
Expand Down Expand Up @@ -447,11 +447,11 @@ index 0000000..7cccc5b 100644
- /* TODO: Use state here
- labels: client */
+ const [data, setData] = useState<string>("");

return (
<div>
- {/*
- TODO: use styled component library
- {/*
- TODO: use styled component library
- */}
+ <StyledComponent>{data}</StyledComponent>
</div>
Expand Down Expand Up @@ -538,3 +538,29 @@ index 0000000..d340f6a
- * labels: urgent
- */
-}
diff --git a/tests/package.move b/tests/package.move
new file mode 100644
index 0000000..d340f6a
--- a/src/package.move
+++ b/src/package.move
@@ -0,0 +1,20 @@
-module coin::coin {
- // TODO: Test this
- // Do it
- // labels: urgent
-
- /// TODO: Natspec comment
- /// Do it
- /// labels: urgent
-
- /*
- TODO: Test this too
- Do it ASAP
- labels: urgent
- */
-
- /**
- * TODO: And this too
- * labels: urgent
- */
-}
27 changes: 25 additions & 2 deletions tests/test_new.diff
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 +474,8 @@ index 0000000..7cccc5b
+
+ return (
+ <div>
+ {/*
+ TODO: use styled component library
+ {/*
+ TODO: use styled component library
+ */}
+ </div>
+ );
Expand Down Expand Up @@ -563,3 +563,26 @@ index 0000000..d340f6a
+ * labels: urgent
+ */
+}
--- /dev/null
+++ b/package.move
@@ -0,0 +1,20 @@
+module coin::coin {
+ // TODO: Test this
+ // Do it
+ // labels: urgent
+
+ /// TODO: Natspec comment
+ /// Do it
+ /// labels: urgent
+
+ /*
+ TODO: Test this too
+ Do it ASAP
+ labels: urgent
+ */
+
+ /**
+ * TODO: And this too
+ * labels: urgent
+ */
+}
9 changes: 4 additions & 5 deletions tests/test_todo_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def test_handlebars_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'handlebars'), 2)

def test_text_issues(self):
# Includes 2 tests for Org, 2 tests for GAP, 2 tests for Visual Basic, 2 tests for Agda, 4 tests for Sol.
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'text'), 12)
# Includes 2 tests for Org, 2 tests for GAP, 2 tests for Visual Basic, 2 tests for Agda, 4 tests for Sol, 4 tests for Move
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'text'), 16)

def test_scss_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'scss'), 2)
Expand Down Expand Up @@ -128,7 +128,6 @@ def test_liquid_issues(self):
def test_lua_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'lua'), 2)


class CustomOptionsTest(unittest.TestCase):
def setUp(self):
parser = TodoParser(options={"identifiers":
Expand Down Expand Up @@ -266,8 +265,8 @@ def test_handlebars_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'handlebars'), 2)

def test_text_issues(self):
# Includes 2 tests for Org, 2 tests for GAP, 2 tests for Visual Basic, 2 tests for Agda, 4 tests for Sol.
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'text'), 12)
# Includes 2 tests for Org, 2 tests for GAP, 2 tests for Visual Basic, 2 tests for Agda, 4 tests for Sol, 4 tests for Move
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'text'), 16)

def test_scss_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'scss'), 2)
Expand Down
Loading