[ddc] Remove print from expression compiler.

Change-Id: I14d1428310b3075ed43c492ead2bd20f734ff974
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/400480
Auto-Submit: Nate Biggs <natebiggs@google.com>
Commit-Queue: Srujan Gaddam <srujzs@google.com>
Reviewed-by: Srujan Gaddam <srujzs@google.com>
This commit is contained in:
Nate Biggs
2024-12-12 16:41:03 -08:00
committed by Commit Queue
parent 6cc9efe290
commit 8791205c4b
@@ -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];