Skip to content

Commit d52917e

Browse files
committed
Fix CI
1 parent 6a45600 commit d52917e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkgs/ffigen/lib/src/code_generator/objc_block.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import '../code_generator.dart';
66
import '../context.dart';
7-
import '../strings.dart';
7+
import '../strings.dart' as strings;
88
import '../visitor/ast.dart';
99

1010
import '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;

0 commit comments

Comments
 (0)