Big update to prettier-extension-monkeyc

I've posted about prettier-extension-monkeyc before, but I've added a bunch of new features that developers will probably like (well, I've been missing them, so maybe you have too).

The new features it implements for VSCode include:

  • Goto Definition. Point at a symbol, Ctrl/Cmd click, and it will take you to the definition. Or F12
  • Goto References. Right click on a symbol and select "Goto References". It will show you all the references. Or Shift-F12
  • Peek Definition/Peek References. Same as above, but in a popup window so you don't lose your place in the original document.
  • Rename Symbol. Right click on a local, function, class or module name, and select "Rename Symbol". It will rename all the references. It doesn't yet work for class members/methods.
  • Goto Symbol. Type Ctrl/Cmd-Shift-O and pick a symbol from the drop down (which has a hierarchical view of all symbols in the current file). This also appears as an outline across the top of the file.
  • Open Symbol By Name. Type Ctrl/Cmd-T, then start typing letters from a symbol name. A drop down will be populated with all matching symbols from anywhere in your project.

Older features include a prettier based formatter for monkeyc, and a monkeyc optimizer that will build/run/export an optimized version of your project.

[edit: My last couple of replies seem to have just disappeared, and the whole conversation seems to be in a jumbled order, so tldr: there's a new test-release at https://github.com/markw65/prettier-extension-monkeyc/releases/tag/v2.0.9 which seems to work for me on linux. I'll do more verification tomorrow, and push a proper update to the vscode store once I'm sure everything is working]

  • PMC incorrectly detects draw function:

    import Toybox.Graphics;
    import Toybox.Lang;
    import Toybox.WatchUi;

    function onUpdate(dc as Dc) as Void {
      var statusIcon;
      if (displayPlayUntil != null) {
        statusIcon = new Rez.Drawables.play();
      } else {
        statusIcon = null;
      }
      if (statusIcon != null) {
        statusIcon.draw(dc);
      }
    }

    $.Toybox.WatchUi.CustomMenu.draw expects 2 arguments, but got 1 [pmc-analysis]

    <drawable-list id="play">
    <shape type="rectangle" x="0" y="0" width="101%" height="101%" border_width="6" border_color="Graphics.COLOR_DK_GREEN" color="Graphics.COLOR_TRANSPARENT" />
    <shape type="circle" x="center" y="center" radius="51%" border_width="8" border_color="Graphics.COLOR_DK_GREEN" color="Graphics.COLOR_TRANSPARENT" />
    <shape type="polygon" points="[[35%,35%],[35%,65%],[65%,50%]]" color="Graphics.COLOR_DK_GREEN" />
    </drawable-list>
  • feature-request: possibility to only do optimization for certain devices

    That seems reasonable.

    I think the simplest way would be to have an option specifying a device memory limit. ie only optimize for devices with less than X kb of memory. One issue with that though is that the cutoff could also be dependent on feature set. For example one of my data fields includes on device settings when supported. For devices that don't support on-device settings, 32k is plenty without my optimizer. But there are a number of devices with 32k, some of which support on device settings, and some of which don't.

    An alternative would be a no_optimization exclude annotation. You could then specify on a per-device basis whether or not to optimize.

    Or I suppose both would be do-able too.

  • Of course adding "as Number?" at line 7 helps, but I wonder why the compiler (SDK 8.1.0, typecheck:3) is ok with it and Prettier doesn't like it?

    Typically this particular issue is because my type checker recognizes that _sport.format might actually call Lang.format, if the type of _sport isn't known (specifically enough). On the other hand, Garmin's type checker assumes that because you're calling "<some object>.format", you must be calling one of the Object.format methods, and doesn't complain. This is not necessarily true at runtime.

    However, in this case, it does look like my type checker has failed to determine the type of _sport correctly. I'll take a look.

  • Both sounds great. As for the annotation, maybe optimize would be more useful, as it's usually used for the old devices (i.e 16k), while the new ones can be left alone until lets say new features make it also necessary for devices with 32k as well.

  • $.Toybox.WatchUi.CustomMenu.draw expects 2 arguments, but got 1 [pmc-analysis]

    I think I'm just not specific enough about the types of resources. In general Rez.Drawables.* could be one of several drawable types. I guess I need to pin them down more.