| Index: compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java b/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| index 2806d5daef05432ae97bddb0383439d4b38e4678..21b9a19957a6caa0a3a24f1b2fb0ff6049d5b2ea 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| @@ -1066,6 +1066,7 @@ public class IncrementalCompilation2Test extends CompilerTestCase {
|
| " var v4 = query('button[foo=\"bar\"]');",
|
| " var v5 = query('div.class');",
|
| " var v6 = query('input#id');",
|
| + " var v7 = query('select#id');",
|
| " // invocation of method",
|
| " var m1 = document.query('div');",
|
| " // unsupported currently",
|
| @@ -1086,6 +1087,7 @@ public class IncrementalCompilation2Test extends CompilerTestCase {
|
| assertInferredElementTypeString(unit, "v4", "ButtonElement");
|
| assertInferredElementTypeString(unit, "v5", "DivElement");
|
| assertInferredElementTypeString(unit, "v6", "InputElement");
|
| + assertInferredElementTypeString(unit, "v7", "SelectElement");
|
| // invocation of method
|
| assertInferredElementTypeString(unit, "m1", "DivElement");
|
| // bad cases, or unsupported now
|
|
|