(parser)
| 7573 | } |
| 7574 | var VisibilityCommand = class extends Command { |
| 7575 | static parseShowHideTarget(parser) { |
| 7576 | var currentTokenValue = parser.currentToken(); |
| 7577 | if (currentTokenValue.value === "when" || currentTokenValue.value === "with" || parser.commandBoundary(currentTokenValue)) { |
| 7578 | return parser.parseElement("implicitMeTarget"); |
| 7579 | } else { |
| 7580 | return parser.parseElement("expression"); |
| 7581 | } |
| 7582 | } |
| 7583 | static resolveHideShowStrategy(parser, name) { |
| 7584 | var configDefault = config.defaultHideShowStrategy; |
| 7585 | var strategies = HIDE_SHOW_STRATEGIES; |
no test coverage detected