Hi Mark,
I have found a little bug…
When inserting a single quotation mark in a comment prevents to set breakpoints for debugging in the part following the comment.
Try this:
set mVar1 to “”
set mVar2 to “”
(*
A commentblock that contains " a quotation mark
*)
set mVar3 to “”
and then remove the quotation mark in the comment…
This is an AppleScript thing: AppleScript parses the contents of block comments looking for nesting. As a result, the introduction of a quoted string within the block comment hides the closing *) from the AppleScript parser.