Skip to content

Commit af1a964

Browse files
author
Nguyễn Tuấn Việt
committed
fix(benchmark): change _kTable20Rows from const to final
_repeat() is a runtime function — cannot be used in a const string interpolation. Dart compiler error: 'method invocation is not a constant expression'.
1 parent dd6ec07 commit af1a964

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

benchmark/layout_regression.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ const _kFloatLayout = '''
6868
</div>
6969
''';
7070

71-
const _kTable20Rows = '''
71+
// Not const — uses _repeat() which is a runtime function call.
72+
final _kTable20Rows = '''
7273
<table>
7374
<thead>
7475
<tr><th>Name</th><th colspan="2">Scores</th></tr>

0 commit comments

Comments
 (0)