Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1158)

Unified Diff: sdk/lib/_internal/compiler/implementation/tree/nodes.dart

Issue 17825002: Remove support for 'argument definitions test' from dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove SentinelConstant. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/compiler/implementation/tree/nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
index 81a51d3fd8507b9f07f0462e222aa9fd0e19a99b..42899b8c0339549ae8d656c3805c4c5959bb637a 100644
--- a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
+++ b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
@@ -366,8 +366,6 @@ class Send extends Expression {
isOperator && identical(selector.asOperator().source.stringValue, '&&');
bool get isLogicalOr =>
isOperator && identical(selector.asOperator().source.stringValue, '||');
- bool get isParameterCheck =>
- isOperator && identical(selector.asOperator().source.stringValue, '?');
bool get isTypeCast {
return isOperator

Powered by Google App Engine
This is Rietveld 408576698