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 3e56ded commit d2614d5Copy full SHA for d2614d5
src/reader.jl
@@ -189,15 +189,15 @@ const record_machine, body_machine = (function ()
189
opt = Automa.RegExp.opt
190
191
feature = let
192
- seqid = re"[a-zA-Z0-9.:^*$@!+_?\-|%]*"
+ seqid = re"[a-zA-Z0-9.:^*$@!+_?\-|%]+"
193
seqid.actions[:enter] = [:pos]
194
seqid.actions[:exit] = [:feature_seqid]
195
196
- source = re"[ -~]*"
+ source = re"[ -~]+"
197
source.actions[:enter] = [:pos]
198
source.actions[:exit] = [:feature_source]
199
200
- type_ = re"[ -~]*"
+ type_ = re"[ -~]+"
201
type_.actions[:enter] = [:pos]
202
type_.actions[:exit] = [:feature_type_]
203
0 commit comments