* Mark position and patch `node.position`.
()
| 28 | */ |
| 29 | |
| 30 | function position() { |
| 31 | var start = { line: lineno, column: column }; |
| 32 | return function (node) { |
| 33 | node.position = new Position(start); |
| 34 | whitespace(); |
| 35 | return node; |
| 36 | }; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Store position information for a node |
no test coverage detected