estools / esvalid

confirm that a SpiderMonkey format AST represents an ECMAScript program
26 stars 7 forks source link

detect switch with more than one default #6

Closed michaelficarra closed 10 years ago

michaelficarra commented 10 years ago
// cannot contain more than one default
switch(0) {
    default: 0
    default: 0
}