Explorar el Código

contrib: Add Uint32 type to zkas LPEG lexer.

parazyd hace 4 años
padre
commit
4773b85097
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      contrib/zk.lua

+ 1 - 1
contrib/zk.lua

@@ -23,7 +23,7 @@ local keyword = token(l.KEYWORD, word_match{
 -- Types.
 local type = token(l.TYPE, word_match{
   'EcPoint', 'EcFixedPoint', 'Base', 'BaseArray',
-  'Scalar', 'ScalarArray', 'MerklePath',
+  'Scalar', 'ScalarArray', 'MerklePath', 'Uint32',
 })
 
 -- Instructions.