org.mozilla.javascript.Node.getLastChild()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 JavaScript  
字(10.2k)|赞(0)|评价(0)|浏览(268)

本文整理了Java中org.mozilla.javascript.Node.getLastChild()方法的一些代码示例,展示了Node.getLastChild()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getLastChild()方法的具体详情如下:
包路径:org.mozilla.javascript.Node
类名称:Node
方法名:getLastChild

Node.getLastChild介绍

暂无

代码示例

代码示例来源:origin: rhino/js

  1. Node createCallOrNew(int nodeType, Node child)
  2. {
  3. int type = Node.NON_SPECIALCALL;
  4. if (child.getType() == Token.NAME) {
  5. String name = child.getString();
  6. if (name.equals("eval")) {
  7. type = Node.SPECIALCALL_EVAL;
  8. } else if (name.equals("With")) {
  9. type = Node.SPECIALCALL_WITH;
  10. }
  11. } else if (child.getType() == Token.GETPROP) {
  12. String name = child.getLastChild().getString();
  13. if (name.equals("eval")) {
  14. type = Node.SPECIALCALL_EVAL;
  15. }
  16. }
  17. Node node = new Node(nodeType, child);
  18. if (type != Node.NON_SPECIALCALL) {
  19. // Calls to these functions require activation objects.
  20. setRequiresActivation();
  21. node.putIntProp(Node.SPECIALCALL_PROP, type);
  22. }
  23. return node;
  24. }

代码示例来源:origin: geogebra/geogebra

  1. private Node createCallOrNew(int nodeType, Node child) {
  2. int type = Node.NON_SPECIALCALL;
  3. if (child.getType() == Token.NAME) {
  4. String name = child.getString();
  5. if (name.equals("eval")) {
  6. type = Node.SPECIALCALL_EVAL;
  7. } else if (name.equals("With")) {
  8. type = Node.SPECIALCALL_WITH;
  9. }
  10. } else if (child.getType() == Token.GETPROP) {
  11. String name = child.getLastChild().getString();
  12. if (name.equals("eval")) {
  13. type = Node.SPECIALCALL_EVAL;
  14. }
  15. }
  16. Node node = new Node(nodeType, child);
  17. if (type != Node.NON_SPECIALCALL) {
  18. // Calls to these functions require activation objects.
  19. setRequiresActivation();
  20. node.putIntProp(Node.SPECIALCALL_PROP, type);
  21. }
  22. return node;
  23. }

代码示例来源:origin: com.sun.phobos/phobos-rhino

  1. Node createCallOrNew(int nodeType, Node child)
  2. {
  3. int type = Node.NON_SPECIALCALL;
  4. if (child.getType() == Token.NAME) {
  5. String name = child.getString();
  6. if (name.equals("eval")) {
  7. type = Node.SPECIALCALL_EVAL;
  8. } else if (name.equals("With")) {
  9. type = Node.SPECIALCALL_WITH;
  10. }
  11. } else if (child.getType() == Token.GETPROP) {
  12. String name = child.getLastChild().getString();
  13. if (name.equals("eval")) {
  14. type = Node.SPECIALCALL_EVAL;
  15. }
  16. }
  17. Node node = new Node(nodeType, child);
  18. if (type != Node.NON_SPECIALCALL) {
  19. // Calls to these functions require activation objects.
  20. setRequiresActivation();
  21. node.putIntProp(Node.SPECIALCALL_PROP, type);
  22. }
  23. return node;
  24. }

代码示例来源:origin: io.apigee/rhino

  1. private Node createCallOrNew(int nodeType, Node child) {
  2. int type = Node.NON_SPECIALCALL;
  3. if (child.getType() == Token.NAME) {
  4. String name = child.getString();
  5. if (name.equals("eval")) {
  6. type = Node.SPECIALCALL_EVAL;
  7. } else if (name.equals("With")) {
  8. type = Node.SPECIALCALL_WITH;
  9. }
  10. } else if (child.getType() == Token.GETPROP) {
  11. String name = child.getLastChild().getString();
  12. if (name.equals("eval")) {
  13. type = Node.SPECIALCALL_EVAL;
  14. }
  15. }
  16. Node node = new Node(nodeType, child);
  17. if (type != Node.NON_SPECIALCALL) {
  18. // Calls to these functions require activation objects.
  19. setRequiresActivation();
  20. node.putIntProp(Node.SPECIALCALL_PROP, type);
  21. }
  22. return node;
  23. }

代码示例来源:origin: ro.isdc.wro4j/rhino

  1. private Node createCallOrNew(int nodeType, Node child) {
  2. int type = Node.NON_SPECIALCALL;
  3. if (child.getType() == Token.NAME) {
  4. String name = child.getString();
  5. if (name.equals("eval")) {
  6. type = Node.SPECIALCALL_EVAL;
  7. } else if (name.equals("With")) {
  8. type = Node.SPECIALCALL_WITH;
  9. }
  10. } else if (child.getType() == Token.GETPROP) {
  11. String name = child.getLastChild().getString();
  12. if (name.equals("eval")) {
  13. type = Node.SPECIALCALL_EVAL;
  14. }
  15. }
  16. Node node = new Node(nodeType, child);
  17. if (type != Node.NON_SPECIALCALL) {
  18. // Calls to these functions require activation objects.
  19. setRequiresActivation();
  20. node.putIntProp(Node.SPECIALCALL_PROP, type);
  21. }
  22. return node;
  23. }

代码示例来源:origin: com.github.tntim96/rhino

  1. private Node createCallOrNew(int nodeType, Node child) {
  2. int type = Node.NON_SPECIALCALL;
  3. if (child.getType() == Token.NAME) {
  4. String name = child.getString();
  5. if (name.equals("eval")) {
  6. type = Node.SPECIALCALL_EVAL;
  7. } else if (name.equals("With")) {
  8. type = Node.SPECIALCALL_WITH;
  9. }
  10. } else if (child.getType() == Token.GETPROP) {
  11. String name = child.getLastChild().getString();
  12. if (name.equals("eval")) {
  13. type = Node.SPECIALCALL_EVAL;
  14. }
  15. }
  16. Node node = new Node(nodeType, child);
  17. if (type != Node.NON_SPECIALCALL) {
  18. // Calls to these functions require activation objects.
  19. setRequiresActivation();
  20. node.putIntProp(Node.SPECIALCALL_PROP, type);
  21. }
  22. return node;
  23. }

代码示例来源:origin: geogebra/geogebra

  1. /**
  2. * Given a destructuring assignment with a left hand side parsed
  3. * as an array or object literal and a right hand side expression,
  4. * rewrite as a series of assignments to the variables defined in
  5. * left from property accesses to the expression on the right.
  6. * @param type declaration type: Token.VAR or Token.LET or -1
  7. * @param left array or object literal containing NAME nodes for
  8. * variables to assign
  9. * @param right expression to assign from
  10. * @return expression that performs a series of assignments to
  11. * the variables defined in left
  12. */
  13. Node createDestructuringAssignment(int type, Node left, Node right)
  14. {
  15. String tempName = currentScriptOrFn.getNextTempName();
  16. Node result = destructuringAssignmentHelper(type, left, right,
  17. tempName);
  18. Node comma = result.getLastChild();
  19. comma.addChildToBack(createName(tempName));
  20. return result;
  21. }

代码示例来源:origin: rhino/js

  1. /**
  2. * Given a destructuring assignment with a left hand side parsed
  3. * as an array or object literal and a right hand side expression,
  4. * rewrite as a series of assignments to the variables defined in
  5. * left from property accesses to the expression on the right.
  6. * @param type declaration type: Token.VAR or Token.LET or -1
  7. * @param left array or object literal containing NAME nodes for
  8. * variables to assign
  9. * @param right expression to assign from
  10. * @return expression that performs a series of assignments to
  11. * the variables defined in left
  12. */
  13. Node createDestructuringAssignment(int type, Node left, Node right)
  14. {
  15. String tempName = parser.currentScriptOrFn.getNextTempName();
  16. Node result = destructuringAssignmentHelper(type, left, right,
  17. tempName);
  18. Node comma = result.getLastChild();
  19. comma.addChildToBack(createName(tempName));
  20. return result;
  21. }

代码示例来源:origin: ro.isdc.wro4j/rhino

  1. /**
  2. * Given a destructuring assignment with a left hand side parsed
  3. * as an array or object literal and a right hand side expression,
  4. * rewrite as a series of assignments to the variables defined in
  5. * left from property accesses to the expression on the right.
  6. * @param type declaration type: Token.VAR or Token.LET or -1
  7. * @param left array or object literal containing NAME nodes for
  8. * variables to assign
  9. * @param right expression to assign from
  10. * @return expression that performs a series of assignments to
  11. * the variables defined in left
  12. */
  13. Node createDestructuringAssignment(int type, Node left, Node right)
  14. {
  15. String tempName = currentScriptOrFn.getNextTempName();
  16. Node result = destructuringAssignmentHelper(type, left, right,
  17. tempName);
  18. Node comma = result.getLastChild();
  19. comma.addChildToBack(createName(tempName));
  20. return result;
  21. }

代码示例来源:origin: io.apigee/rhino

  1. /**
  2. * Given a destructuring assignment with a left hand side parsed
  3. * as an array or object literal and a right hand side expression,
  4. * rewrite as a series of assignments to the variables defined in
  5. * left from property accesses to the expression on the right.
  6. * @param type declaration type: Token.VAR or Token.LET or -1
  7. * @param left array or object literal containing NAME nodes for
  8. * variables to assign
  9. * @param right expression to assign from
  10. * @return expression that performs a series of assignments to
  11. * the variables defined in left
  12. */
  13. Node createDestructuringAssignment(int type, Node left, Node right)
  14. {
  15. String tempName = currentScriptOrFn.getNextTempName();
  16. Node result = destructuringAssignmentHelper(type, left, right,
  17. tempName);
  18. Node comma = result.getLastChild();
  19. comma.addChildToBack(createName(tempName));
  20. return result;
  21. }

代码示例来源:origin: com.github.tntim96/rhino

  1. /**
  2. * Given a destructuring assignment with a left hand side parsed
  3. * as an array or object literal and a right hand side expression,
  4. * rewrite as a series of assignments to the variables defined in
  5. * left from property accesses to the expression on the right.
  6. * @param type declaration type: Token.VAR or Token.LET or -1
  7. * @param left array or object literal containing NAME nodes for
  8. * variables to assign
  9. * @param right expression to assign from
  10. * @return expression that performs a series of assignments to
  11. * the variables defined in left
  12. */
  13. Node createDestructuringAssignment(int type, Node left, Node right)
  14. {
  15. String tempName = currentScriptOrFn.getNextTempName();
  16. Node result = destructuringAssignmentHelper(type, left, right,
  17. tempName);
  18. Node comma = result.getLastChild();
  19. comma.addChildToBack(createName(tempName));
  20. return result;
  21. }

代码示例来源:origin: rhino/js

  1. private Node simpleAssignment(Node left, Node right)
  2. {
  3. int nodeType = left.getType();
  4. switch (nodeType) {
  5. case Token.NAME:
  6. left.setType(Token.BINDNAME);
  7. return new Node(Token.SETNAME, left, right);
  8. case Token.GETPROP:
  9. case Token.GETELEM: {
  10. Node obj = left.getFirstChild();
  11. Node id = left.getLastChild();
  12. int type;
  13. if (nodeType == Token.GETPROP) {
  14. type = Token.SETPROP;
  15. } else {
  16. type = Token.SETELEM;
  17. }
  18. return new Node(type, obj, id, right);
  19. }
  20. case Token.GET_REF: {
  21. Node ref = left.getFirstChild();
  22. checkMutableReference(ref);
  23. return new Node(Token.SET_REF, ref, right);
  24. }
  25. }
  26. throw Kit.codeBug();
  27. }

代码示例来源:origin: com.sun.phobos/phobos-rhino

  1. private Node simpleAssignment(Node left, Node right)
  2. {
  3. int nodeType = left.getType();
  4. switch (nodeType) {
  5. case Token.NAME:
  6. left.setType(Token.BINDNAME);
  7. return new Node(Token.SETNAME, left, right);
  8. case Token.GETPROP:
  9. case Token.GETELEM: {
  10. Node obj = left.getFirstChild();
  11. Node id = left.getLastChild();
  12. int type;
  13. if (nodeType == Token.GETPROP) {
  14. type = Token.SETPROP;
  15. } else {
  16. type = Token.SETELEM;
  17. }
  18. return new Node(type, obj, id, right);
  19. }
  20. case Token.GET_REF: {
  21. Node ref = left.getFirstChild();
  22. checkMutableReference(ref);
  23. return new Node(Token.SET_REF, ref, right);
  24. }
  25. }
  26. throw Kit.codeBug();
  27. }

代码示例来源:origin: rhino/js

  1. Node lastStmt = statements.getLastChild();
  2. if (lastStmt == null || lastStmt.getType() != Token.RETURN) {
  3. statements.addChildToBack(new Node(Token.RETURN));

代码示例来源:origin: com.sun.phobos/phobos-rhino

  1. Node lastStmt = statements.getLastChild();
  2. if (lastStmt == null || lastStmt.getType() != Token.RETURN) {
  3. statements.addChildToBack(new Node(Token.RETURN));

代码示例来源:origin: com.sun.phobos/phobos-rhino

  1. Node lastChild = lhs.getLastChild();
  2. if (lhs.getFirstChild() != lastChild) {
  3. parser.reportError("msg.mult.index");

代码示例来源:origin: ro.isdc.wro4j/rhino

  1. Node lastStmt = statements.getLastChild();
  2. if (lastStmt == null || lastStmt.getType() != Token.RETURN) {
  3. statements.addChildToBack(new Node(Token.RETURN));

代码示例来源:origin: com.github.tntim96/rhino

  1. Node lastStmt = statements.getLastChild();
  2. if (lastStmt == null || lastStmt.getType() != Token.RETURN) {
  3. statements.addChildToBack(new Node(Token.RETURN));

代码示例来源:origin: geogebra/geogebra

  1. Node lastStmt = statements.getLastChild();
  2. if (lastStmt == null || lastStmt.getType() != Token.RETURN) {
  3. statements.addChildToBack(new Node(Token.RETURN));

代码示例来源:origin: io.apigee/rhino

  1. Node lastStmt = statements.getLastChild();
  2. if (lastStmt == null || lastStmt.getType() != Token.RETURN) {
  3. statements.addChildToBack(new Node(Token.RETURN));

相关文章