File tree Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Expand file tree Collapse file tree 8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ export class ConfiguredVariable extends Node {
102
102
*/
103
103
declare name : string ;
104
104
105
- /** The expresison whose value the variable is assigned. */
105
+ /** The expression whose value the variable is assigned. */
106
106
get expression ( ) : Expression {
107
107
return this . _expression ! ;
108
108
}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export class DebugRule
66
66
this . debugExpression = { text : value ?. toString ( ) ?? '' } ;
67
67
}
68
68
69
- /** The expresison whose value is emitted when the debug rule is executed. */
69
+ /** The expression whose value is emitted when the debug rule is executed. */
70
70
get debugExpression ( ) : Expression {
71
71
return this . _debugExpression ! ;
72
72
}
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ export class EachRule
95
95
throw new Error ( "EachRule.params can't be overwritten." ) ;
96
96
}
97
97
98
- /** The expresison whose value is iterated over. */
98
+ /** The expression whose value is iterated over. */
99
99
get eachExpression ( ) : Expression {
100
100
return this . _eachExpression ! ;
101
101
}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export class ErrorRule
66
66
this . errorExpression = { text : value ?. toString ( ) ?? '' } ;
67
67
}
68
68
69
- /** The expresison whose value is thrown when the error rule is executed. */
69
+ /** The expression whose value is thrown when the error rule is executed. */
70
70
get errorExpression ( ) : Expression {
71
71
return this . _errorExpression ! ;
72
72
}
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ export class ForRule
102
102
throw new Error ( "ForRule.params can't be overwritten." ) ;
103
103
}
104
104
105
- /** The expresison whose value is the starting point of the iteration. */
105
+ /** The expression whose value is the starting point of the iteration. */
106
106
get fromExpression ( ) : Expression {
107
107
return this . _fromExpression ! ;
108
108
}
@@ -116,7 +116,7 @@ export class ForRule
116
116
}
117
117
private declare _fromExpression ?: Expression ;
118
118
119
- /** The expresison whose value is the ending point of the iteration. */
119
+ /** The expression whose value is the ending point of the iteration. */
120
120
get toExpression ( ) : Expression {
121
121
return this . _toExpression ! ;
122
122
}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export class ReturnRule
66
66
this . returnExpression = { text : value ?. toString ( ) ?? '' } ;
67
67
}
68
68
69
- /** The expresison whose value is emitted when the return rule is executed. */
69
+ /** The expression whose value is emitted when the return rule is executed. */
70
70
get returnExpression ( ) : Expression {
71
71
return this . _returnExpression ! ;
72
72
}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export class WarnRule
66
66
this . warnExpression = { text : value ?. toString ( ) ?? '' } ;
67
67
}
68
68
69
- /** The expresison whose value is emitted when the warn rule is executed. */
69
+ /** The expression whose value is emitted when the warn rule is executed. */
70
70
get warnExpression ( ) : Expression {
71
71
return this . _warnExpression ! ;
72
72
}
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export class WhileRule
71
71
throw new Error ( "WhileRule.params can't be overwritten." ) ;
72
72
}
73
73
74
- /** The expresison whose value is emitted when the while rule is executed. */
74
+ /** The expression whose value is emitted when the while rule is executed. */
75
75
get whileCondition ( ) : Expression {
76
76
return this . _whileCondition ! ;
77
77
}
You can’t perform that action at this time.
0 commit comments