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
This adverb can be found in specs and in rakudo(I'm not sure how to test it, but code like regex { :dba('array subscript') '[' ~ ']' <expression> }
doesn't fail, but there is not tests in the roast.
Is it a part of the language? We need to test it then.
The text was updated successfully, but these errors were encountered:
@Altai-man what you're referring to is purely internal thing. diessct_*longname methods return an instance of World's internal LongName class, .name is invoked upon the instance.
:dba in a grammar is different thing. As far as I know it is used by the core Grammar only. Despite being exposed to Raku Grammar at the syntax level (parsing of :dba doesn't fail) it does nothing but harm to a rule because it breaks the parsing itself. For example:
This adverb can be found in specs and in rakudo(I'm not sure how to test it, but code like
regex { :dba('array subscript') '[' ~ ']' <expression> }doesn't fail, but there is not tests in the roast.
Is it a part of the language? We need to test it then.
The text was updated successfully, but these errors were encountered: