内部错误:' http:// localhost:63342 / epimss_polymer_app / web / index.dart':格式错误类型:第37行pos 42465:type' prefix16.property'没有加载

时间:2015-10-27 10:20:12

标签: dart dart-polymer

我第二次遇到这个问题而没有了解它为什么会发生这个问题。

我的应用程序刚刚开始运行,在正常模式和调试模式下没有输出我得到以下

    Internal error: 'http://localhost:63342/epimss_polymer_app/web/index.dart': malformed type: line 37 pos 42465: type 'prefix16.property' is not loaded
final _data = {const prefix0.JsProxyReflectable(): new r.ReflectorData(<m.ClassMirror>[new r.ClassMirrorImpl(r"PolymerMixin", r"polymer.src.common.polymer_js_proxy.PolymerMixin", 519, 0, const prefix0.JsProxyReflectable(), const <int>[], const <int>[], const <int>[], -1, {} ....

整个输出位于附件中: 输出似乎对我没有任何帮助,没有迹象表明问题发生在哪个文件或行。

我使用的是1.13.0-dev.7.3(ref ec143d4)和WebStorm 11 EAP(当前的EAP)。

过去4天我一直在查看我的代码而没有任何成功。

似乎无法附加整个文件输出 - 以前我可以附加文件 - 现在链接在哪里?

1 个答案:

答案 0 :(得分:0)

我刚接触到这个属性:

@property(observer: 'selectedChanged')
bool selected;

@reflectable
selectedChanged(oldVal, newVal) {
  print(newVal);
}

实际应该是

@Property(observer: 'selectedChanged')

(使用大写@P...

另见https://github.com/dart-lang/sdk/issues/24751