| Index: compiler/java/com/google/dart/compiler/backend/js/Normalizer.java
|
| diff --git a/compiler/java/com/google/dart/compiler/backend/js/Normalizer.java b/compiler/java/com/google/dart/compiler/backend/js/Normalizer.java
|
| index d34b78d2365ba94c80f3540961a1f804f0f306c3..36d35a4dabfe09b330650f36f52d021fa7fa980b 100644
|
| --- a/compiler/java/com/google/dart/compiler/backend/js/Normalizer.java
|
| +++ b/compiler/java/com/google/dart/compiler/backend/js/Normalizer.java
|
| @@ -662,6 +662,16 @@ public class Normalizer {
|
| public boolean isConstructor() {
|
| return true;
|
| }
|
| +
|
| + @Override
|
| + public ConstructorElement getDefaultConstructor() {
|
| + throw new UnsupportedOperationException();
|
| + }
|
| +
|
| + @Override
|
| + public void setDefaultConstructor(ConstructorElement defaultConstructor) {
|
| + throw new UnsupportedOperationException();
|
| + }
|
|
|
| @Override
|
| public Type getReturnType() {
|
|
|