UNPKG

146 BJavaScriptView Raw
1var SwitchCase = module.exports = function(test, consequent) {
2 this.type = 'SwitchCase';
3 this.test = test;
4 this.consequent = consequent;
5};