You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/extendscript-toolkit/debugging-in-the-toolkit.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,12 +132,12 @@ When execution reaches this breakpoint after the specified number of hits, the d
132
132
133
133
Each breakpoint is indicated by an icon to the left of the line number in the document window, and an icon and line number in the Breakpoints panel. Different icons are used in the document window and in the Breakpoints panel.
||| Unconditional breakpoint, disabled. Execution does not stop. |
139
-
||| Conditional breakpoint. Execution stops if the attached JavaScript<br/>expression evaluates to `true`. |
140
-
||| Conditional breakpoint, disabled. Execution does not stop. |
||| Unconditional breakpoint, disabled. Execution does not stop. |
139
+
||| Conditional breakpoint. Execution stops if the attached JavaScriptexpression evaluates to `true`. |
140
+
||| Conditional breakpoint, disabled. Execution does not stop. |
|`(`| Marks the start of a region for capturing a match. |
197
-
|`)`| Marks the end of a capturing region. |
198
-
|`\<`| Matches the start of a word using the editor's current definition of words. |
199
-
| `\>` | Matches the end of a word using the editor's current definition of words. |
200
-
|`\x`| Escapes a character x that would otherwise have a special meaning. For example, [ is<br/>interpreted as a left bracket, rather than the start of a character set. |
201
-
|`[...]`|A set of characters; for example, [abc] means any of the characters a, b or c.<br/>You can also use ranges, for example [a-z] for any lower case character. |
202
-
|`[^...]`| The complement of the characters in a set. For example, [^A-Za-z] means any character<br/>except an alphabetic character. |
203
-
|`^`| Matches the start of a line (unless used inside a set). |
204
-
|`$`| Matches the end of a line. |
205
-
|`*`| Matches 0 or more times. For example, Sa\*m matches Sm, Sam, Saam, Saaam etc. |
|`(`| Marks the start of a region for capturing a match. |
197
+
|`)`| Marks the end of a capturing region. |
198
+
|`\<`| Matches the start of a word using the editor's current definition of words. |
199
+
| `\>` | Matches the end of a word using the editor's current definition of words. |
200
+
|`\x`| Escapes a character x that would otherwise have a special meaning. For example, `[` isinterpreted as a left bracket, rather than the start of a character set. |
201
+
|`[...]`|A set of characters; for example, [abc] means any of the characters a, b or c.You can also use ranges, for example [a-z] for any lower case character.|
202
+
|`[^...]`| The complement of the characters in a set. For example, [^A-Za-z] means any characterexcept an alphabetic character.|
203
+
|`^`| Matches the start of a line (unless used inside a set). |
204
+
|`$`| Matches the end of a line. |
205
+
|`*`| Matches 0 or more times. For example, Sa\*m matches Sm, Sam, Saam, Saaam etc. |
206
206
207
207
In a replace operation, you can use the captured regions of a match in the replacement expression by using the placeholders `\1` through `\9`, where `\1` refers to the first captured region, `\2` to the second, and so on.
|`expression`| String | A String containing an XPath expression.<br/><br/>#### NOTE<br/>In this context, include the actual top level element. For example, an<br/>expression for the example XML must start with "/bookstore". This is unlike<br/>JavaScript property access, where the top level element is implied. |
738
-
|`variables`| Object | Optional. A JavaScript object containing variable definitions. The properties are used to look up XPath variables contained in the expression. For example, if the expression contains the variable `$abc`, the value is in the object's `abc` property. |
|`expression`| String | A String containing an XPath expression. |
739
+
||||
740
+
||| !!! note |
741
+
||| In this context, include the actual top level element. For example, an expression for the example XML must start with "/bookstore". This is unlike JavaScript property access, where the top level element is implied. |
|`variables`| Object | Optional. A JavaScript object containing variable definitions. The properties are used to look up XPath variables contained in the expression. For example, if the expression contains the variable `$abc`, the value is in the object's `abc` property. |
|`result`| Any | You can send data of any type as the result value. The messaging framework creates a BridgeTalk message object, and flattens this value into a string<br/>which it stores in the body of that message. See [Passing values between applications](communicating-through-messages.md#passing-values-between-applications). |
|`result`| Any | You can send data of any type as the result value. The messaging framework creates a BridgeTalk message object, and flattens this value into a stringwhich it stores in the body of that message. See [Passing values between applications](communicating-through-messages.md#passing-values-between-applications). |
0 commit comments