| Index: lib/src/js/precedence.dart
 | 
| diff --git a/lib/src/js/precedence.dart b/lib/src/js/precedence.dart
 | 
| index bfe00a2ae79e2567763cef5c51b5225e4f578aaf..4b274ca649c2ccb065e7c1da50703948deb0f42c 100644
 | 
| --- a/lib/src/js/precedence.dart
 | 
| +++ b/lib/src/js/precedence.dart
 | 
| @@ -6,7 +6,8 @@ library precedence;
 | 
|  
 | 
|  const EXPRESSION = 0;
 | 
|  const SPREAD = EXPRESSION + 1;
 | 
| -const ASSIGNMENT = SPREAD + 1;
 | 
| +const YIELD = SPREAD + 1;
 | 
| +const ASSIGNMENT = YIELD + 1;
 | 
|  const LOGICAL_OR = ASSIGNMENT + 1;
 | 
|  const LOGICAL_AND = LOGICAL_OR + 1;
 | 
|  const BIT_OR = LOGICAL_AND + 1;
 | 
| 
 |