(parser)
| 9289 | behavior(target, source, behaviorArgs); |
| 9290 | } |
| 9291 | static parse(parser) { |
| 9292 | if (!parser.matchToken("install")) return; |
| 9293 | var behaviorPath = parser.requireElement("dotOrColonPath").evalStatically(); |
| 9294 | var behaviorNamespace = behaviorPath.split("."); |
| 9295 | var args = parser.parseElement("namedArgumentList"); |
| 9296 | return new _InstallFeature(behaviorPath, behaviorNamespace, args); |
| 9297 | } |
| 9298 | }; |
| 9299 | |
| 9300 | // src/parsetree/features/js.js |
nothing calls this directly
no test coverage detected