diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-10-04 14:06:17 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-10-04 14:06:17 +0200 |
| commit | 4a1d56285559545a56cb7c79a0ea1564f01e09e5 (patch) | |
| tree | a600684f681d4b8c401ab1fc9d2a770ac5ea56d7 /test/highlight/notation.api | |
| parent | 0931d6ef75e5dc37ba6bd7bb92c369d1df99e6d3 (diff) | |
Add optionals
Diffstat (limited to 'test/highlight/notation.api')
| -rw-r--r-- | test/highlight/notation.api | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/highlight/notation.api b/test/highlight/notation.api index b798549..c20f11a 100644 --- a/test/highlight/notation.api +++ b/test/highlight/notation.api @@ -20,7 +20,7 @@ Forum.Models.Post //<- operator //^ property // ^ function - // ^ parameter + // ^ variable.parameter // ^ type // ^ keyword // ^ type @@ -34,7 +34,7 @@ Forum.Models.Post //<- operator //^ property // ^ function - // ^ parameter + // ^ variable.parameter // ^ type // ^ keyword // ^ type @@ -45,4 +45,10 @@ Forum.Models.Post // ^ keyword ::get(id <UUID>) => Promise<Forum.Models.Post> #update(text <String>) => Promise<void> - #transform(transformer <Function<T>(T) => boolean>) + #transform([transformer] <Function<T>(T) => boolean>) + //<- operator + //^ property + // ^ function + // ^ variable.parameter.optional + // ^ type + // ^ keyword |