aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/language/props.ts
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/language/props.ts')
-rw-r--r--subprojects/frontend/src/language/props.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/subprojects/frontend/src/language/props.ts b/subprojects/frontend/src/language/props.ts
new file mode 100644
index 00000000..8e488bf5
--- /dev/null
+++ b/subprojects/frontend/src/language/props.ts
@@ -0,0 +1,7 @@
1import { NodeProp } from '@lezer/common';
2
3export const implicitCompletion = new NodeProp({
4 deserialize(s: string) {
5 return s === 'true';
6 },
7});