| Index: compiler/java/com/google/dart/compiler/resolver/Elements.java | 
| diff --git a/compiler/java/com/google/dart/compiler/resolver/Elements.java b/compiler/java/com/google/dart/compiler/resolver/Elements.java | 
| index 35e0cbff4946dc4e1751632bba8bbbcc782a1bf2..fbfd615b4be2397c853a1f5b224f08cb79063bc2 100644 | 
| --- a/compiler/java/com/google/dart/compiler/resolver/Elements.java | 
| +++ b/compiler/java/com/google/dart/compiler/resolver/Elements.java | 
| @@ -20,6 +20,7 @@ import com.google.dart.compiler.ast.DartFunctionExpression; | 
| import com.google.dart.compiler.ast.DartFunctionTypeAlias; | 
| import com.google.dart.compiler.ast.DartIdentifier; | 
| import com.google.dart.compiler.ast.DartLabel; | 
| +import com.google.dart.compiler.ast.DartMetadata; | 
| import com.google.dart.compiler.ast.DartMethodDefinition; | 
| import com.google.dart.compiler.ast.DartNativeBlock; | 
| import com.google.dart.compiler.ast.DartNode; | 
| @@ -216,8 +217,9 @@ public class Elements { | 
|  | 
| static FieldElementImplementation fieldFromNode(DartField node, | 
| EnclosingElement holder, | 
| +                                                  DartMetadata metadata, | 
| Modifiers modifiers) { | 
| -    return FieldElementImplementation.fromNode(node, holder, modifiers); | 
| +    return FieldElementImplementation.fromNode(node, holder, metadata, modifiers); | 
| } | 
|  | 
| static ClassElement classFromNode(DartClass node, LibraryElement library) { | 
|  |