aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-05-09 13:10:09 -0400
committerDave Gauer <dave@ratfactor.com>2021-05-09 13:10:09 -0400
commit34ac5f674283e39f5813306099b34df94bfebaa8 (patch)
tree75d6401a2f47e0aca053cbbd2e4727bb0e4b16f7 /patches
parentd4f5684450e8b4c7ed924399e71515758420d5bd (diff)
Add ex079 quoted identifiers
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/079_quoted_identifiers.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/patches/patches/079_quoted_identifiers.patch b/patches/patches/079_quoted_identifiers.patch
new file mode 100644
index 0000000..c7bcea8
--- /dev/null
+++ b/patches/patches/079_quoted_identifiers.patch
@@ -0,0 +1,12 @@
+23,24c23,24
+< const 55_cows: i32 = 55;
+< const isn't true: bool = false;
+---
+> const @"55_cows": i32 = 55;
+> const @"isn't true": bool = false;
+27,28c27,28
+< 55_cows,
+< isn't true,
+---
+> @"55_cows",
+> @"isn't true",