(arg)
| 6228 | // list of elements, we normalize for different kinds of arguments |
| 6229 | |
| 6230 | const ordargument = function ordargument(arg) { |
| 6231 | const node = checkNodeType(arg, "ordgroup"); |
| 6232 | return node ? node.body : [arg]; |
| 6233 | }; |
| 6234 | |
| 6235 | /** |
| 6236 | * This file does the main work of building a domTree structure from a parse |
no test coverage detected