EcmaScript 6 - Tern IDE for Eclipse validation errors

[亡魂溺海] 提交于 2019-12-30 06:23:28

问题


I am using Eclipse Mars with the Tern IDE für ES6 support on version 1.1.0 (the snapshot). I get validation errors on arrow functions and const-exports as can be seen in this screenshot:

I worked through these descriptions but the errors won't vanish: https://github.com/angelozerr/tern.java/wiki/Tern-&-ECMAScript6-support https://github.com/angelozerr/tern.java/wiki/Tern-Linter

I don't know however whats really supported by the Tern plugin, but according to the documentation on http://ternjs.net/ Tern should support arrow functions since 0.14. The IDE-page on github however only mentions class, import and promise support (which is beyond basic in my eyes for a plugin to support ES6).

Is there anyone who is developing ES6 with Eclipse with (more or less) full feature support? I kinda feel like a unicorn...


回答1:


Your error comes from JSDT Validator which doesn't support ES6 syntax (and not from tern).

tern 1.1.0-SNAPSHOT provides support for ES6 for completion, hyperlink, validation but not for ES6 validation. The linter https://github.com/angelozerr/tern.java/wiki/Tern-Linter is a type checker validator and not a syntax validator.

To validate ES6 with Eclipse IDE & tern.java, you must:

  • disable JSDT Validator. For that you can remove the JSDT nature from your .project. Or install (never tested) the not released Eclipse JEE distribution which provides an option to turn off internal parsing and validation. See http://tools.jboss.org/documentation/whatsnew/jbosstools/4.3.0.Final.html#javascript-development-tools-improvements

  • after that, you can use JSHint to validate ES6, with https://github.com/angelozerr/tern.java/wiki/Tern-Linter-JSHint. To enable JSHint to validate ES6 correctly it needs to get the "esnext"-option enabled otherwise ES6 syntax will be marked as errors. The option is found in the project properties\Tern\Validation\JSHint under "Relaxing options".



来源:https://stackoverflow.com/questions/33479015/ecmascript-6-tern-ide-for-eclipse-validation-errors

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!