import {SelectorMatcher} from "core/compiler/selector"; import {CssSelector} from "core/compiler/selector"; import {StringWrapper, Math} from 'facade/lang'; import {ListWrapper} from 'facade/collection'; var fixedMatcher; var fixedSelectorStrings = []; var fixedSelectors = []; var COUNT = 1000; export function setup() { for (var i=0; i { count += selected; }); } return count; } function randomSelector() { var res = randomStr(5); for (var i=0; i<3; i++) { res += '.'+randomStr(5); } for (var i=0; i<3; i++) { res += '['+randomStr(3)+'='+randomStr(6)+']'; } return res; } function randomStr(len){ var s = ''; while (s.length < len) { s += randomChar(); } return s; } function randomChar(){ var n = randomNum(62); if(n<10) return n; //1-10 if(n<36) return StringWrapper.fromCharCode(n+55); //A-Z return StringWrapper.fromCharCode(n+61); //a-z } function randomNum(max) { return Math.floor(Math.random() * max); }