| Index: compiler/java/com/google/dart/compiler/ast/DartCase.java
|
| ===================================================================
|
| --- compiler/java/com/google/dart/compiler/ast/DartCase.java (revision 9937)
|
| +++ compiler/java/com/google/dart/compiler/ast/DartCase.java (working copy)
|
| @@ -13,8 +13,8 @@
|
|
|
| private DartExpression expr;
|
|
|
| - public DartCase(DartExpression expr, DartLabel label, List<DartStatement> statements) {
|
| - super(label, statements);
|
| + public DartCase(DartExpression expr, List<DartLabel> labels, List<DartStatement> statements) {
|
| + super(labels, statements);
|
| this.expr = becomeParentOf(expr);
|
| }
|
|
|
|
|