aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/index.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-11 01:42:22 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-10-31 19:26:10 +0100
commite1d6802843960e911f19c7e9c4a4b626ae854b90 (patch)
treee62d4d3fa0bc4f3ce1582eb2edb35b2d0d030994 /language-web/src/main/js/index.tsx
parentfix(web): a11y issue reported by Lighthouse (diff)
downloadrefinery-e1d6802843960e911f19c7e9c4a4b626ae854b90.tar.gz
refinery-e1d6802843960e911f19c7e9c4a4b626ae854b90.tar.zst
refinery-e1d6802843960e911f19c7e9c4a4b626ae854b90.zip
feat(web): simplify contextual parsing
* More relaxted parsing in the browser for stable variable/node identifier classification. * String support in the browser. * contains, refers, and opposite keywords are no longer contextual, which simplifies parsing in the browser.
Diffstat (limited to 'language-web/src/main/js/index.tsx')
-rw-r--r--language-web/src/main/js/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/language-web/src/main/js/index.tsx b/language-web/src/main/js/index.tsx
index 1b24eadb..9316db4d 100644
--- a/language-web/src/main/js/index.tsx
+++ b/language-web/src/main/js/index.tsx
@@ -26,7 +26,7 @@ enum TaxStatus {
26% A child cannot have any dependents. 26% A child cannot have any dependents.
27error invalidTaxStatus(Person p) <-> 27error invalidTaxStatus(Person p) <->
28 taxStatus(p, child), 28 taxStatus(p, child),
29 children(p, _q) 29 children(p, _q),
30; taxStatus(p, retired), 30; taxStatus(p, retired),
31 parent(p, q), 31 parent(p, q),
32 !taxStatus(q, retired). 32 !taxStatus(q, retired).