(parser)
| 9743 | behavior(target, source, behaviorArgs); |
| 9744 | } |
| 9745 | static parse(parser) { |
| 9746 | if (!parser.matchToken("install")) return; |
| 9747 | var behaviorPath = parser.requireElement("dotOrColonPath").evalStatically(); |
| 9748 | var behaviorNamespace = behaviorPath.split("."); |
| 9749 | var args = parser.parseElement("namedArgumentList"); |
| 9750 | return new _InstallFeature(behaviorPath, behaviorNamespace, args); |
| 9751 | } |
| 9752 | }; |
| 9753 | |
| 9754 | // src/parsetree/features/js.js |
nothing calls this directly
no test coverage detected