Same name and namespace in other branches
  1. 6.0.x advagg_js_minify/jsminplus.inc \JSParser::opArity 1 commentaire
  2. 7.x-1.x advagg_js_compress/jsminplus.inc \JSParser::opArity 1 commentaire
  3. 7.x-2.x advagg_js_compress/jsminplus.inc \JSParser::opArity 1 commentaire
  4. 8.x-2.x advagg_js_minify/jsminplus.inc \JSParser::opArity 1 commentaire
  5. 8.x-3.x advagg_js_minify/jsminplus.inc \JSParser::opArity 1 commentaire
  6. 8.x-4.x advagg_js_minify/jsminplus.inc \JSParser::opArity 1 commentaire

Type: opArity

Fichier

advagg_js_minify/jsminplus.inc, line 819

Classe

JSParser

Code

private $opArity = array(
    ',' => -2,
    '=' => 2,
    '?' => 3,
    '||' => 2,
    '&&' => 2,
    '|' => 2,
    '^' => 2,
    '&' => 2,
    '==' => 2,
    '!=' => 2,
    '===' => 2,
    '!==' => 2,
    '<' => 2,
    '<=' => 2,
    '>=' => 2,
    '>' => 2,
    'in' => 2,
    'instanceof' => 2,
    '<<' => 2,
    '>>' => 2,
    '>>>' => 2,
    '+' => 2,
    '-' => 2,
    '*' => 2,
    '/' => 2,
    '%' => 2,
    'delete' => 1,
    'void' => 1,
    'typeof' => 1,
    '!' => 1,
    '~' => 1,
    'U+' => 1,
    'U-' => 1,
    '++' => 1,
    '--' => 1,
    'new' => 1,
    '.' => 2,
    JS_NEW_WITH_ARGS => 2,
    JS_INDEX => 2,
    JS_CALL => 2,
    JS_ARRAY_INIT => 1,
    JS_OBJECT_INIT => 1,
    JS_GROUP => 1,
    TOKEN_CONDCOMMENT_START => 1,
    TOKEN_CONDCOMMENT_END => 1,
);