MCPcopy Create free account
hub / github.com/mozilla/rhino / Assignment

Class Assignment

rhino/src/main/java/org/mozilla/javascript/ast/Assignment.java:13–36  ·  view source on GitHub ↗

AST node representing the set of assignment operators such as =, = and +=.

Source from the content-addressed store, hash-verified

11 * +=}.
12 */
13public class Assignment extends InfixExpression {
14
15 public Assignment() {}
16
17 public Assignment(int pos) {
18 super(pos);
19 }
20
21 public Assignment(int pos, int len) {
22 super(pos, len);
23 }
24
25 public Assignment(int pos, int len, AstNode left, AstNode right) {
26 super(pos, len, left, right);
27 }
28
29 public Assignment(AstNode left, AstNode right) {
30 super(left, right);
31 }
32
33 public Assignment(int operator, AstNode left, AstNode right, int operatorPos) {
34 super(operator, left, right, operatorPos);
35 }
36}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected