(view: View)
| 1502 | } |
| 1503 | |
| 1504 | function nativeScriptChildren(view: View): View[] { |
| 1505 | const result: View[] = []; |
| 1506 | safeCall(() => { |
| 1507 | view.eachChildView((child: View) => { |
| 1508 | result.push(child); |
| 1509 | return true; |
| 1510 | }); |
| 1511 | }, undefined); |
| 1512 | return result; |
| 1513 | } |
| 1514 | |
| 1515 | function sourceLocationFromNode(node: JSONObject): JSONObject | null { |
| 1516 | const location = objectValue(node.sourceLocation); |
no test coverage detected