@@ -4607,6 +4607,58 @@ const MessageCode messageIncorrectTypeArgumentVariable = const MessageCode(
46074607 severity: Severity .context,
46084608 message: r"""This is the type variable whose bound isn't conformed to.""" );
46094609
4610+ // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4611+ const Template <
4612+ Message Function (
4613+ String
4614+ string)> templateIncrementalCompilerIllegalParameter = const Template <
4615+ Message Function (String string)>(
4616+ messageTemplate:
4617+ r"""Illegal parameter name '#string' found during expression compilation.""" ,
4618+ withArguments: _withArgumentsIncrementalCompilerIllegalParameter);
4619+
4620+ // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4621+ const Code <Message Function (String string)>
4622+ codeIncrementalCompilerIllegalParameter =
4623+ const Code <Message Function (String string)>(
4624+ "IncrementalCompilerIllegalParameter" ,
4625+ templateIncrementalCompilerIllegalParameter,
4626+ );
4627+
4628+ // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4629+ Message _withArgumentsIncrementalCompilerIllegalParameter (String string) {
4630+ if (string.isEmpty) throw 'No string provided' ;
4631+ return new Message (codeIncrementalCompilerIllegalParameter,
4632+ message:
4633+ """Illegal parameter name '${string }' found during expression compilation.""" ,
4634+ arguments: {'string' : string});
4635+ }
4636+
4637+ // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4638+ const Template <Message Function (String string)>
4639+ templateIncrementalCompilerIllegalTypeParameter =
4640+ const Template <Message Function (String string)>(
4641+ messageTemplate:
4642+ r"""Illegal type parameter name '#string' found during expression compilation.""" ,
4643+ withArguments: _withArgumentsIncrementalCompilerIllegalTypeParameter);
4644+
4645+ // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4646+ const Code <Message Function (String string)>
4647+ codeIncrementalCompilerIllegalTypeParameter =
4648+ const Code <Message Function (String string)>(
4649+ "IncrementalCompilerIllegalTypeParameter" ,
4650+ templateIncrementalCompilerIllegalTypeParameter,
4651+ );
4652+
4653+ // DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
4654+ Message _withArgumentsIncrementalCompilerIllegalTypeParameter (String string) {
4655+ if (string.isEmpty) throw 'No string provided' ;
4656+ return new Message (codeIncrementalCompilerIllegalTypeParameter,
4657+ message:
4658+ """Illegal type parameter name '${string }' found during expression compilation.""" ,
4659+ arguments: {'string' : string});
4660+ }
4661+
46104662// DO NOT EDIT. THIS FILE IS GENERATED. SEE TOP OF FILE.
46114663const Template <Message Function (Uri uri_)> templateInferredPackageUri =
46124664 const Template <Message Function (Uri uri_)>(
0 commit comments