vscode-wallaby-helper README
Extension for wallaby application development
Features
Code navigation:
Screen functions -> Includes functions
Screen interactions -> view
Includes functions -> Screen functions
Screen variables -> Includes context variable definition
Includes context variable definition -> Screen variables
Plugins, Modules, UI -> Referencing file
Included context variable definition examples:
api.utils.setValue(context._privates, 'bla.blub', x);
api.utils.setValue(context, '_privates.bla.blub', x);
api.utils.setValue(context._globals, 'bla.blub', x);
api.utils.setValue(context, '_globals.bla.blub', x);
context._privates.bla.blub = test;
Autocompletion:
- Screen functions
- Context variables (privates, globals)
- Screen properties (interaction, generic action etc.)
- Settings.json properties
Checks
- If used functions in screens are defined
- If used context variables in screens are defined
- If used plugins, modules and ui paths in screens are defined
- Typechecker for screens and settings.json
- If defined functions in include files are used in screens
| |