You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I would like to create a parser that can find LPAREN (IDENTIFIER COLON TYPE (COMMA IDENTIFIER COLON TYPE)*)? RPAREN. How can I repeatedly find a specific pattern?
pubenumDeclarationContent{Function{name:String,argTypes:HashMap<String,Types>,// <- I would like to find multiple of thesereturnTypes:Types,body:FunctionBody}}pubstructFunctionBody{expressions:Vec<Expression>// and multiple of these.}pubenumTypes{Void,Integer,FloatingPoint,String,Character,Boolean,Array{length:i32,types:Box<Types>},UnsizedArray{types:Box<Types>},Tuple{types:Box<Vec<Types>>},Dictionary{keyTypes:Box<Types>,valueTypes:Box<Types>},Function{argsTypes:Box<Vec<Types>>,returnTypes:Box<Types>},Other{name:String}}
The text was updated successfully, but these errors were encountered:
Hello. I would like to create a parser that can find
LPAREN (IDENTIFIER COLON TYPE (COMMA IDENTIFIER COLON TYPE)*)? RPAREN
. How can I repeatedly find a specific pattern?The text was updated successfully, but these errors were encountered: