We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 512a800 commit d942e9dCopy full SHA for d942e9d
web/playground/src/workbench/prql-syntax.js
@@ -6,11 +6,13 @@ const TRANSFORMS = [
6
"from_text",
7
"from",
8
"group",
9
+ "intersect",
10
"join",
11
+ "loop",
12
+ "remove",
13
"select",
14
"sort",
15
"take",
- "union",
16
"window",
17
];
18
const MODULES = ["date", "math", "text"];
@@ -82,7 +84,7 @@ const def = {
82
84
// We allow underscores, a bit more liberally than PRQL, which doesn't
83
85
// allow them at the start or end (but that's difficult to express with
86
// regex; contributions welcome).
- [/[+-]?[^\w](([\d_]+(\.[\d_]+])?)|(\.[\d_]+))/, "number"],
87
+ [/[+-]?[^\w](([\d_]+(\.[\d_]+)?)|(\.[\d_]+))/, "number"],
88
89
// strings
90
[/"([^"\\]|\\.)*$/, "string.invalid"], // non-terminated string
0 commit comments