| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| The production QuantifierPrefix :: * evaluates by returning the two |
| description: Execute /[^"]* /.exec('"beast"-nickname') and check results |
| var __executed = /[^"]*/.exec('"beast"-nickname'); |
| __expected.input = '"beast"-nickname'; |
| if (__executed.length !== __expected.length) { |
| $ERROR('#1: __executed = /[^"]*/.exec(\'"beast"-nickname\'); __executed.length === ' + __expected.length + '. Actual: ' + __executed.length); |
| if (__executed.index !== __expected.index) { |
| $ERROR('#2: __executed = /[^"]*/.exec(\'"beast"-nickname\'); __executed.index === ' + __expected.index + '. Actual: ' + __executed.index); |
| if (__executed.input !== __expected.input) { |
| $ERROR('#3: __executed = /[^"]*/.exec(\'"beast"-nickname\'); __executed.input === ' + __expected.input + '. Actual: ' + __executed.input); |
| for(var index=0; index<__expected.length; index++) { |
| if (__executed[index] !== __expected[index]) { |
| $ERROR('#4: __executed = /[^"]*/.exec(\'"beast"-nickname\'); __executed[' + index + '] === ' + __expected[index] + '. Actual: ' + __executed[index]); |