Visual Studio Code: Errors when using XML attributes in ExtendScript

Learn / Forums / General InDesign Topics / Visual Studio Code: Errors when using XML attributes in ExtendScript

Viewing 0 reply threads
  • Author
    Posts
    • #1256289
      Karl Heinz Kremer
      Participant

      I’ve googled the skin of my fingers, but have not found an answer to my question yet. I have a large ExtendScript project that I want to debug in Visual Studio Code (using Adobe’s ExtendScript extension). It works fairly well (even though I eventually will end up with an “Extension host terminated unexpectedly” error). My main problem is that the syntax checker is complaining about anything that uses an XML attribute. I cannot start a debug session for a file that contains syntax errors. Here is a short sample script:

      //@ts-nocheck
      //@target InDesign

      var thisDocument = app.documents.add();

      // create some xml and write it to file
      var root = new XML(“<root/>”);
      var child = new XML(“<child/>”);
      //@ts-ignore
      child.@attribute = “SomeAttribute”; // << causes errors
      root.appendChild(child);

      And here are the error messages I am getting for the line in question:

      Identifier expected.
      Experimental support for decorators is a feature that is subject to change in a future release. Set the ‘experimentalDecorators’ option in your ‘tsconfig’ or ‘jsconfig’ to remove this warning.
      Declaration expected.
      Declaration or statement expected.

      I’ve tried to use TypeScript and JavaScript as the language, but neither one works. Unfortunately, there is no “ExtendScript” language selection.

      I can work around that by keeping my scripts in a separate folder, and then running the main script from another script using “app.doScript()”. This way, the editor does not see the files that it claims contain the syntax errors and it will actually allow me to start a debug session.

      I’ve tried the //@ts-ignore and //@ts-nocheck commands, but without success.

      Has anybody gotten these to work in VSC?

      Thanks,

      Karl Heinz

Viewing 0 reply threads
  • You must be logged in to reply to this topic.
>