-
|
New PreRelease |
Beta Was this translation helpful? Give feedback.
Answered by
webmturn
Apr 12, 2026
Replies: 1 comment 2 replies
-
Hi, could you please also attach some screenshots to show where exactly the syntax check feature is added in the editor and how it works? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment




Thanks for sharing the screenshots — now I can see clearly what you're referring to! That's a syntax check banner in the Logic Editor.
In Sketchware Pro's block-based workflow, the generated Java code from blocks is always structurally correct (blocks enforce proper syntax like braces, semicolons, and nesting). The only place where syntax errors can occur is in "add source directly" blocks, where you write raw code manually.
When you tap Run, the compiler (ECJ) already provides full error reporting with details — typically within a few seconds. A real-time syntax checker in the editor would only catch a subset of those issues (it can't …