Skip to content

Commit

Permalink
[ddc] Remove print from expression compiler.
Browse files Browse the repository at this point in the history
Change-Id: I14d1428310b3075ed43c492ead2bd20f734ff974
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/400480
Auto-Submit: Nate Biggs <[email protected]>
Commit-Queue: Srujan Gaddam <[email protected]>
Reviewed-by: Srujan Gaddam <[email protected]>
  • Loading branch information
natebiggs authored and Commit Queue committed Dec 13, 2024
1 parent 6cc9efe commit 8791205
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/dev_compiler/lib/src/kernel/expression_compiler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ class ExpressionCompiler {
// '$36' in JS. We do a similar expansion here to normalize the names.
final jsNamePrefix =
js_ast.toJSIdentifier(dartName).replaceAll('\$', '\\\$');
print(jsNamePrefix);
final regexp = RegExp(r'^' + jsNamePrefix + r'(\$[0-9]*)?$');
for (var i = 0; i < jsNames.length; i++) {
final jsName = jsNames[i];
Expand Down

0 comments on commit 8791205

Please sign in to comment.