runtime/syntax/nix: Add support for block comments (#2488)

This commit is contained in:
Peder Bergebakken Sundt
2022-07-17 21:16:47 +02:00
committed by GitHub
parent d89db64829
commit 80bfaf1c54

View File

@@ -25,3 +25,8 @@ rules:
start: "#"
end: "$"
rules: []
- comment:
start: "/\\*"
end: "\\*/"
rules: []