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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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