File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
pkgs/ffigen/lib/src/code_generator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 44
55import '../code_generator.dart' ;
66import '../context.dart' ;
7- import '../strings.dart' ;
7+ import '../strings.dart' as strings ;
88import '../visitor/ast.dart' ;
99
1010import 'binding_string.dart' ;
@@ -110,11 +110,11 @@ class ObjCBlock extends BindingType with HasLocalScope {
110110 // Create a fake USR code for the block. This code is used to dedupe blocks
111111 // with the same signature. Not intended to be human readable.
112112 return [
113- '$synthUsrChar objcBlock:' ,
113+ '${ strings . synthUsrChar } objcBlock:' ,
114114 '${returnType .cacheKey ()} ${returnsRetained ? 'R' : '' }' ,
115115 for (final param in params)
116116 '${param .type .cacheKey ()} ${param .objCConsumed ? 'C' : '' }' ,
117- ].join (synthUsrChar);
117+ ].join (strings. synthUsrChar);
118118 }
119119
120120 bool get hasListener => returnType == voidType;
You can’t perform that action at this time.
0 commit comments