(objNode, point)
| 671 | } |
| 672 | |
| 673 | function pointInProp(objNode, point) { |
| 674 | for (var i = 0; i < objNode.properties.length; i++) { |
| 675 | var curProp = objNode.properties[i]; |
| 676 | if (curProp.key && curProp.key.start <= point && curProp.key.end >= point) |
| 677 | return curProp; |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | var jsKeywords = ("break do instanceof typeof case else new var " + |
| 682 | "catch finally return void continue for switch while debugger " + |
no outgoing calls
no test coverage detected
searching dependent graphs…