From: Jay Freeman (saurik) Date: Fri, 2 Oct 2009 23:47:02 +0000 (+0000) Subject: Docuemented some precedence rules (going to target a more normalized parser). X-Git-Tag: v0.9.432~381 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/cde525f7e0bded621b0c3f39dfbbc5f49e067dac?ds=sidebyside Docuemented some precedence rules (going to target a more normalized parser). --- diff --git a/Cycript.y b/Cycript.y index b1d2230..4b90f42 100644 --- a/Cycript.y +++ b/Cycript.y @@ -326,6 +326,19 @@ int cylex(YYSTYPE *lvalp, cy::location *llocp, void *scanner); %type SelectorList %type VariadicCall +%left "*" "/" "%" +%left "+" "-" +%left "<<" ">>" ">>>" +%left "<" ">" "<=" ">=" "instanceof" "in" +%left "==" "!=" "===" "!==" +%left "&" +%left "^" +%left "|" +%left "&&" +%left "||" + +%right "=" "*=" "/=" "%=" "+=" "-=" "<<=" ">>=" ">>>=" "&=" "^=" "|=" + %nonassoc "if" %nonassoc "else"