We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cc905 commit a96819eCopy full SHA for a96819e
compiler/lib-wasm/wat_preprocess.ml
@@ -9,6 +9,14 @@ let report_error loc msg =
9
10
(****)
11
12
+(*
13
+See the WebAssembly Text Format Specification:
14
+https://webassembly.github.io/spec/core/text/index.html
15
+
16
+We use custom annotations to extend the syntax
17
+(https://github.com/WebAssembly/annotations).
18
+*)
19
20
let digit = [%sedlex.regexp? '0' .. '9']
21
22
let hexdigit = [%sedlex.regexp? '0' .. '9' | 'a' .. 'f' | 'A' .. 'F']
0 commit comments