Difference between revisions of "VJET/JS code assist and validation for two or more js files"
Line 16: | Line 16: | ||
<source lang="javascript">//< needs(firstfile)</source> | <source lang="javascript">//< needs(firstfile)</source> | ||
− | Then type control + space. Now you will see functions and variables from firstfile.js<br/> | + | Then type control + space. Now you will see functions and variables from firstfile.js<br/><br/> |
[[Image:Vjet_PastedGraphic-6.png]] | [[Image:Vjet_PastedGraphic-6.png]] | ||
Revision as of 06:35, 1 December 2012
For code assist and validation to work between 2 or more js files you must add a vjetdoc comment at the top of the file. Below illustrates how this works.
1. Create a VJET project with two JS files firstfile.js and secondfile.js
src/firstfile.js
src/secondfile.js
2. Add the contents such as the following:
3. Create files secondfile.js and at the top of secondfile.js add this line
//< needs(firstfile)
Then type control + space. Now you will see functions and variables from firstfile.js
That's is it for 2 files.. now if you want to support more than 2 you can add as many needs statements that you want.
Let's update the contents of secondFile.js and add the result variable.
</br>
Now we create thirdfile.js and need firstfile.js and secondFile.js (note: the needs statement is case sensitive)
Here is the example project that you can import into eclipse and try it out yourself.
^jsassistacrossfilesexample.zip