statements
Error
¶
Bases: Statement
Source code in src/robot/parsing/model/statements.py
errors: tuple[str, ...]
property
writable
¶
Errors got from the underlying ERROR
token.
Errors can be set also explicitly. When accessing errors, they are returned along with errors got from tokens.
from_tokens(tokens)
classmethod
¶
Create a statement from given tokens.
Statement type is got automatically from token types.
This classmethod should be called from :class:Statement
, not from
its subclasses. If you know the subclass to use, simply create an
instance of it directly.
Source code in src/robot/parsing/model/statements.py
get_option(name, default=None)
¶
Return value of a configuration option with the given name
.
If the option has not been used, return default
.
If the option has been used multiple times, values are joined together. This is typically an error situation and validated elsewhere.
New in Robot Framework 6.1.
Source code in src/robot/parsing/model/statements.py
get_token(*types)
¶
Return a token with any of the given types
.
If there are no matches, return None
. If there are multiple
matches, return the first match.
Source code in src/robot/parsing/model/statements.py
get_tokens(*types)
¶
get_value(type, default=None)
¶
Return value of a token with the given type
.
If there are no matches, return default
. If there are multiple
matches, return the value of the first match.
Source code in src/robot/parsing/model/statements.py
get_values(*types)
¶
Return values of tokens having any of the given types
.
Return
¶
Bases: Statement
Represents the RETURN statement.
This class named ReturnStatement
prior to Robot Framework 7.0.
The old name still exists as a backwards compatible alias.
Source code in src/robot/parsing/model/statements.py
from_tokens(tokens)
classmethod
¶
Create a statement from given tokens.
Statement type is got automatically from token types.
This classmethod should be called from :class:Statement
, not from
its subclasses. If you know the subclass to use, simply create an
instance of it directly.
Source code in src/robot/parsing/model/statements.py
get_option(name, default=None)
¶
Return value of a configuration option with the given name
.
If the option has not been used, return default
.
If the option has been used multiple times, values are joined together. This is typically an error situation and validated elsewhere.
New in Robot Framework 6.1.
Source code in src/robot/parsing/model/statements.py
get_token(*types)
¶
Return a token with any of the given types
.
If there are no matches, return None
. If there are multiple
matches, return the first match.
Source code in src/robot/parsing/model/statements.py
get_tokens(*types)
¶
get_value(type, default=None)
¶
Return value of a token with the given type
.
If there are no matches, return default
. If there are multiple
matches, return the value of the first match.
Source code in src/robot/parsing/model/statements.py
get_values(*types)
¶
Return values of tokens having any of the given types
.
ReturnSetting
¶
Bases: MultiValue
Represents the deprecated [Return]
setting.
This class was named Return
prior to Robot Framework 7.0. A forward
compatible ReturnSetting
alias existed already in Robot Framework 6.1.
Source code in src/robot/parsing/model/statements.py
from_tokens(tokens)
classmethod
¶
Create a statement from given tokens.
Statement type is got automatically from token types.
This classmethod should be called from :class:Statement
, not from
its subclasses. If you know the subclass to use, simply create an
instance of it directly.
Source code in src/robot/parsing/model/statements.py
get_option(name, default=None)
¶
Return value of a configuration option with the given name
.
If the option has not been used, return default
.
If the option has been used multiple times, values are joined together. This is typically an error situation and validated elsewhere.
New in Robot Framework 6.1.
Source code in src/robot/parsing/model/statements.py
get_token(*types)
¶
Return a token with any of the given types
.
If there are no matches, return None
. If there are multiple
matches, return the first match.
Source code in src/robot/parsing/model/statements.py
get_tokens(*types)
¶
get_value(type, default=None)
¶
Return value of a token with the given type
.
If there are no matches, return default
. If there are multiple
matches, return the value of the first match.
Source code in src/robot/parsing/model/statements.py
get_values(*types)
¶
Return values of tokens having any of the given types
.
Statement
¶
Bases: Node
, ABC
Source code in src/robot/parsing/model/statements.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
from_params(*args, **kwargs)
abstractmethod
classmethod
¶
Create a statement from passed parameters.
Required and optional arguments in general match class properties. Values are used to create matching tokens.
Most implementations support following general properties:
separator
whitespace inserted between each token. Default is four spaces.indent
whitespace inserted before first token. Default is four spaces.eol
end of line sign. Default is'\n'
.
This classmethod should be called from the :class:Statement
subclass
to create, not from the :class:Statement
class itself.
Source code in src/robot/parsing/model/statements.py
from_tokens(tokens)
classmethod
¶
Create a statement from given tokens.
Statement type is got automatically from token types.
This classmethod should be called from :class:Statement
, not from
its subclasses. If you know the subclass to use, simply create an
instance of it directly.
Source code in src/robot/parsing/model/statements.py
get_option(name, default=None)
¶
Return value of a configuration option with the given name
.
If the option has not been used, return default
.
If the option has been used multiple times, values are joined together. This is typically an error situation and validated elsewhere.
New in Robot Framework 6.1.
Source code in src/robot/parsing/model/statements.py
get_token(*types)
¶
Return a token with any of the given types
.
If there are no matches, return None
. If there are multiple
matches, return the first match.
Source code in src/robot/parsing/model/statements.py
get_tokens(*types)
¶
get_value(type, default=None)
¶
Return value of a token with the given type
.
If there are no matches, return default
. If there are multiple
matches, return the value of the first match.
Source code in src/robot/parsing/model/statements.py
get_values(*types)
¶
Return values of tokens having any of the given types
.