(ast)
| 258 | } |
| 259 | |
| 260 | getDeclaration(ast) { |
| 261 | for (let i = 0; i < this.identifiers.length; i++) { |
| 262 | const identifier = this.identifiers[i]; |
| 263 | if (ast === identifier.ast) { |
| 264 | return identifier.declaration; |
| 265 | } |
| 266 | } |
| 267 | return null; |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * @desc Return the type of parameter sent to subKernel/Kernel. |
no outgoing calls
no test coverage detected