(objNode, point)
| 644 | } |
| 645 | |
| 646 | function pointInProp(objNode, point) { |
| 647 | for (var i = 0; i < objNode.properties.length; i++) { |
| 648 | var curProp = objNode.properties[i]; |
| 649 | if (curProp.key.start <= point && curProp.key.end >= point) |
| 650 | return curProp; |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | var jsKeywords = ("break do instanceof typeof case else new var " + |
| 655 | "catch finally return void continue for switch while debugger " + |
no outgoing calls
no test coverage detected