aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/language/props.ts
blob: 8e488bf596fb9c5be92cf9fc3c132d766ac3901c (plain) (blame)
1
2
3
4
5
6
7
import { NodeProp } from '@lezer/common';

export const implicitCompletion = new NodeProp({
  deserialize(s: string) {
    return s === 'true';
  },
});