| Index: lib/src/prism/tests/languages/verilog/function_feature.test
|
| diff --git a/lib/src/prism/tests/languages/verilog/function_feature.test b/lib/src/prism/tests/languages/verilog/function_feature.test
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f33fe3f7d6f845110c87ae4eedd461358c345c79
|
| --- /dev/null
|
| +++ b/lib/src/prism/tests/languages/verilog/function_feature.test
|
| @@ -0,0 +1,15 @@
|
| +foo()
|
| +foo_bar()
|
| +foo_BAR_42()
|
| +
|
| +----------------------------------------------------
|
| +
|
| +[
|
| + ["function", "foo"], ["punctuation", "("], ["punctuation", ")"],
|
| + ["function", "foo_bar"], ["punctuation", "("], ["punctuation", ")"],
|
| + ["function", "foo_BAR_42"], ["punctuation", "("], ["punctuation", ")"]
|
| +]
|
| +
|
| +----------------------------------------------------
|
| +
|
| +Checks for functions.
|
|
|