Difference between revisions of "Error Messages/40349"
(Created page with '= Example Error Text = In the expression A.J, Variable A is not indexed by J = Cause = The syntax ''A.J'' is a way of naming an index, in this case an index of the array ''A'…') |
|||
Line 1: | Line 1: | ||
− | + | [[Category: Error messages]] | |
− | + | == Example error text == | |
− | + | :<code>''In the expression A.J, Variable A is not indexed by J''</code> | |
− | + | == Cause == | |
− | The | + | The syntax <code>A.J</code> is a way of naming an index, in this case an index of the array <code>A</code> having the [[identifier]] index identifier <code>J</code>. This syntax is used to refer to local indexes, since local indexes don't exist in the global namespace. |
− | + | The indicated error occurs when none of the indexes of <code>A</code> are named <code>J</code>. | |
+ | ==Remedies== | ||
+ | Change the expression to use a valid index of the array. | ||
+ | |||
+ | == See Also == | ||
+ | * [[Arrays and Indexes]] | ||
+ | * [[Identifier]] | ||
* [[Local Indexes]] | * [[Local Indexes]] | ||
− | |||
− |
Latest revision as of 19:04, 28 March 2016
Example error text
In the expression A.J, Variable A is not indexed by J
Cause
The syntax A.J
is a way of naming an index, in this case an index of the array A
having the identifier index identifier J
. This syntax is used to refer to local indexes, since local indexes don't exist in the global namespace.
The indicated error occurs when none of the indexes of A
are named J
.
Remedies
Change the expression to use a valid index of the array.
See Also
Comments
Enable comment auto-refresher