Made some naming changes to Label-related operations.

This commit is contained in:
n1474335 2017-12-19 13:18:25 +00:00
parent b48e940f2d
commit 12fc8c22dd
4 changed files with 31 additions and 34 deletions

View file

@ -137,13 +137,13 @@ const OperationConfig = {
},
"Jump": {
module: "Default",
description: "Jump forwards or backwards over the specified number of operations.",
description: "Jump forwards or backwards to the specified Label",
inputType: "string",
outputType: "string",
flowControl: true,
args: [
{
name: "The Label to Jump to",
name: "Label name",
type: "string",
value: ""
},
@ -156,7 +156,7 @@ const OperationConfig = {
},
"Conditional Jump": {
module: "Default",
description: "Conditionally jump forwards or backwards over the specified number of operations based on whether the data matches the specified regular expression.",
description: "Conditionally jump forwards or backwards to the specified Label based on whether the data matches the specified regular expression.",
inputType: "string",
outputType: "string",
flowControl: true,
@ -167,13 +167,13 @@ const OperationConfig = {
value: ""
},
{
name: "Negative match (logical NOT)",
name: "Invert match",
type: "boolean",
value: false
},
{
name: "The Label to Jump to",
type: "string",
name: "Label name",
type: "shortString",
value: ""
},
{
@ -185,14 +185,14 @@ const OperationConfig = {
},
"Label": {
module: "Default",
description: "Provides a location for for conditional and fixed jumps to jump.",
description: "Provides a location for conditional and fixed jumps to redirect execution to.",
inputType: "string",
outputType: "string",
flowControl: true,
args: [
{
name: "Jump Label",
type: "string",
name: "Name",
type: "shortString",
value: ""
}
]