| Index: compiler/java/com/google/dart/compiler/DefaultDartArtifactProvider.java
|
| diff --git a/compiler/java/com/google/dart/compiler/DefaultDartArtifactProvider.java b/compiler/java/com/google/dart/compiler/DefaultDartArtifactProvider.java
|
| index 42efa0aa68c0075d88fbe7403db5d7769775f72d..b7058a7622635e1064fef0ba062a1497b6f80d52 100644
|
| --- a/compiler/java/com/google/dart/compiler/DefaultDartArtifactProvider.java
|
| +++ b/compiler/java/com/google/dart/compiler/DefaultDartArtifactProvider.java
|
| @@ -81,7 +81,7 @@ public class DefaultDartArtifactProvider extends DartArtifactProvider {
|
| }
|
| }
|
| File artifactFile = getArtifactFile(base, "", extension);
|
| - return artifactFile.lastModified() < source.getLastModified();
|
| + return !artifactFile.exists() || artifactFile.lastModified() < source.getLastModified();
|
| }
|
|
|
| // TODO(jbrosenberg): remove 'source' argument from this method, it's not used
|
|
|