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

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

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

Node.putIntProp介绍

暂无

代码示例

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

  1. /**
  2. * When a break is encountered annotate the statement being broken
  3. * out of by setting its CONTROL_BLOCK_PROP property.
  4. * @return logical OR of END_* flags
  5. */
  6. private int endCheckBreak()
  7. {
  8. Node n = ((Jump) this).jumpNode;
  9. n.putIntProp(CONTROL_BLOCK_PROP, END_DROPS_OFF);
  10. return END_UNREACHED;
  11. }

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

  1. /**
  2. * When a break is encountered annotate the statement being broken
  3. * out of by setting its CONTROL_BLOCK_PROP property.
  4. * @return logical OR of END_* flags
  5. */
  6. private int endCheckBreak()
  7. {
  8. Node n = ((Jump) this).jumpNode;
  9. n.putIntProp(CONTROL_BLOCK_PROP, END_DROPS_OFF);
  10. return END_UNREACHED;
  11. }

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

  1. /**
  2. * Regular expressions
  3. */
  4. Node createRegExp(int regexpIndex)
  5. {
  6. Node n = new Node(Token.REGEXP);
  7. n.putIntProp(Node.REGEXP_PROP, regexpIndex);
  8. return n;
  9. }

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

  1. public void labelId(int labelId)
  2. {
  3. if (type != Token.TARGET && type != Token.YIELD) Kit.codeBug();
  4. putIntProp(LABEL_ID_PROP, labelId);
  5. }

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

  1. public void labelId(int labelId)
  2. {
  3. if (type != Token.TARGET) Kit.codeBug();
  4. putIntProp(LABEL_ID_PROP, labelId);
  5. }

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

  1. public void labelId(int labelId)
  2. {
  3. if (type != Token.TARGET && type != Token.YIELD) Kit.codeBug();
  4. putIntProp(LABEL_ID_PROP, labelId);
  5. }

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

  1. public void labelId(int labelId)
  2. {
  3. if (type != Token.TARGET && type != Token.YIELD) Kit.codeBug();
  4. putIntProp(LABEL_ID_PROP, labelId);
  5. }

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

  1. /**
  2. * When a break is encountered annotate the statement being broken
  3. * out of by setting its CONTROL_BLOCK_PROP property.
  4. * @return logical OR of END_* flags
  5. */
  6. private int endCheckBreak()
  7. {
  8. Node n = ((Jump) this).getJumpStatement();
  9. n.putIntProp(CONTROL_BLOCK_PROP, END_DROPS_OFF);
  10. return END_UNREACHED;
  11. }

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

  1. /**
  2. * Regular expressions
  3. */
  4. Node createRegExp(int regexpIndex)
  5. {
  6. Node n = new Node(Token.REGEXP);
  7. n.putIntProp(Node.REGEXP_PROP, regexpIndex);
  8. return n;
  9. }

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

  1. /**
  2. * When a break is encountered annotate the statement being broken
  3. * out of by setting its CONTROL_BLOCK_PROP property.
  4. * @return logical OR of END_* flags
  5. */
  6. private int endCheckBreak()
  7. {
  8. Node n = ((Jump) this).getJumpStatement();
  9. n.putIntProp(CONTROL_BLOCK_PROP, END_DROPS_OFF);
  10. return END_UNREACHED;
  11. }

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

  1. public void labelId(int labelId)
  2. {
  3. if (type != Token.TARGET && type != Token.YIELD) Kit.codeBug();
  4. putIntProp(LABEL_ID_PROP, labelId);
  5. }

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

  1. /**
  2. * When a break is encountered annotate the statement being broken
  3. * out of by setting its CONTROL_BLOCK_PROP property.
  4. * @return logical OR of END_* flags
  5. */
  6. private int endCheckBreak()
  7. {
  8. Node n = ((Jump) this).getJumpStatement();
  9. n.putIntProp(CONTROL_BLOCK_PROP, END_DROPS_OFF);
  10. return END_UNREACHED;
  11. }

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

  1. /**
  2. * When a break is encountered annotate the statement being broken
  3. * out of by setting its CONTROL_BLOCK_PROP property.
  4. * @return logical OR of END_* flags
  5. */
  6. private int endCheckBreak()
  7. {
  8. Node n = ((Jump) this).getJumpStatement();
  9. n.putIntProp(CONTROL_BLOCK_PROP, END_DROPS_OFF);
  10. return END_UNREACHED;
  11. }

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

  1. public void labelId(int labelId)
  2. {
  3. if (type != Token.TARGET && type != Token.YIELD) Kit.codeBug();
  4. putIntProp(LABEL_ID_PROP, labelId);
  5. }

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

  1. private Node createIncDec(int nodeType, boolean post, Node child)
  2. {
  3. child = makeReference(child);
  4. int childType = child.getType();
  5. switch (childType) {
  6. case Token.NAME:
  7. case Token.GETPROP:
  8. case Token.GETELEM:
  9. case Token.GET_REF: {
  10. Node n = new Node(nodeType, child);
  11. int incrDecrMask = 0;
  12. if (nodeType == Token.DEC) {
  13. incrDecrMask |= Node.DECR_FLAG;
  14. }
  15. if (post) {
  16. incrDecrMask |= Node.POST_FLAG;
  17. }
  18. n.putIntProp(Node.INCRDECR_PROP, incrDecrMask);
  19. return n;
  20. }
  21. }
  22. throw Kit.codeBug();
  23. }

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

  1. int getVarIndex(Node n)
  2. {
  3. int index = n.getIntProp(Node.VARIABLE_PROP, -1);
  4. if (index == -1) {
  5. Node node;
  6. int type = n.getType();
  7. if (type == Token.GETVAR) {
  8. node = n;
  9. } else if (type == Token.SETVAR ||
  10. type == Token.SETCONSTVAR) {
  11. node = n.getFirstChild();
  12. } else {
  13. throw Kit.codeBug();
  14. }
  15. index = fnode.getIndexForNameNode(node);
  16. if (index < 0) throw Kit.codeBug();
  17. n.putIntProp(Node.VARIABLE_PROP, index);
  18. }
  19. return index;
  20. }

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

  1. public int getVarIndex(Node n)
  2. {
  3. int index = n.getIntProp(Node.VARIABLE_PROP, -1);
  4. if (index == -1) {
  5. Node node;
  6. int type = n.getType();
  7. if (type == Token.GETVAR) {
  8. node = n;
  9. } else if (type == Token.SETVAR ||
  10. type == Token.SETCONSTVAR) {
  11. node = n.getFirstChild();
  12. } else {
  13. throw Kit.codeBug();
  14. }
  15. index = fnode.getIndexForNameNode(node);
  16. if (index < 0) throw Kit.codeBug();
  17. n.putIntProp(Node.VARIABLE_PROP, index);
  18. }
  19. return index;
  20. }

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

  1. public int getVarIndex(Node n)
  2. {
  3. int index = n.getIntProp(Node.VARIABLE_PROP, -1);
  4. if (index == -1) {
  5. Node node;
  6. int type = n.getType();
  7. if (type == Token.GETVAR) {
  8. node = n;
  9. } else if (type == Token.SETVAR ||
  10. type == Token.SETCONSTVAR) {
  11. node = n.getFirstChild();
  12. } else {
  13. throw Kit.codeBug();
  14. }
  15. index = fnode.getIndexForNameNode(node);
  16. if (index < 0) throw Kit.codeBug();
  17. n.putIntProp(Node.VARIABLE_PROP, index);
  18. }
  19. return index;
  20. }

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

  1. public int getVarIndex(Node n)
  2. {
  3. int index = n.getIntProp(Node.VARIABLE_PROP, -1);
  4. if (index == -1) {
  5. Node node;
  6. int type = n.getType();
  7. if (type == Token.GETVAR) {
  8. node = n;
  9. } else if (type == Token.SETVAR ||
  10. type == Token.SETCONSTVAR) {
  11. node = n.getFirstChild();
  12. } else {
  13. throw Kit.codeBug();
  14. }
  15. index = fnode.getIndexForNameNode(node);
  16. if (index < 0) throw Kit.codeBug();
  17. n.putIntProp(Node.VARIABLE_PROP, index);
  18. }
  19. return index;
  20. }

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

  1. int getVarIndex(Node n)
  2. {
  3. int index = n.getIntProp(Node.VARIABLE_PROP, -1);
  4. if (index == -1) {
  5. String name;
  6. int type = n.getType();
  7. if (type == Token.GETVAR) {
  8. name = n.getString();
  9. } else if (type == Token.SETVAR ||
  10. type == Token.SETCONSTVAR) {
  11. name = n.getFirstChild().getString();
  12. } else {
  13. throw Kit.codeBug();
  14. }
  15. index = fnode.getParamOrVarIndex(name);
  16. if (index < 0) throw Kit.codeBug();
  17. n.putIntProp(Node.VARIABLE_PROP, index);
  18. }
  19. return index;
  20. }

相关文章