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

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

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

Node.resetTargets_r介绍

暂无

代码示例

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

  1. private void resetTargets_r()
  2. {
  3. if (type == Token.TARGET || type == Token.YIELD) {
  4. labelId(-1);
  5. }
  6. Node child = first;
  7. while (child != null) {
  8. child.resetTargets_r();
  9. child = child.next;
  10. }
  11. }

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

  1. private void resetTargets_r()
  2. {
  3. if (type == Token.TARGET || type == Token.YIELD) {
  4. labelId(-1);
  5. }
  6. Node child = first;
  7. while (child != null) {
  8. child.resetTargets_r();
  9. child = child.next;
  10. }
  11. }

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

  1. private void resetTargets_r()
  2. {
  3. if (type == Token.TARGET || type == Token.YIELD) {
  4. labelId(-1);
  5. }
  6. Node child = first;
  7. while (child != null) {
  8. child.resetTargets_r();
  9. child = child.next;
  10. }
  11. }

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

  1. private void resetTargets_r()
  2. {
  3. if (type == Token.TARGET || type == Token.YIELD) {
  4. labelId(-1);
  5. }
  6. Node child = first;
  7. while (child != null) {
  8. child.resetTargets_r();
  9. child = child.next;
  10. }
  11. }

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

  1. /**
  2. * Recursively unlabel every TARGET or YIELD node in the tree.
  3. *
  4. * This is used and should only be used for inlining finally blocks where
  5. * jsr instructions used to be. It is somewhat hackish, but implementing
  6. * a clone() operation would take much, much more effort.
  7. *
  8. * This solution works for inlining finally blocks because you should never
  9. * be writing any given block to the class file simultaneously. Therefore,
  10. * an unlabeling will never occur in the middle of a block.
  11. */
  12. public void resetTargets()
  13. {
  14. if (type == Token.FINALLY) {
  15. resetTargets_r();
  16. } else {
  17. Kit.codeBug();
  18. }
  19. }

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

  1. /**
  2. * Recursively unlabel every TARGET or YIELD node in the tree.
  3. *
  4. * This is used and should only be used for inlining finally blocks where
  5. * jsr instructions used to be. It is somewhat hackish, but implementing
  6. * a clone() operation would take much, much more effort.
  7. *
  8. * This solution works for inlining finally blocks because you should never
  9. * be writing any given block to the class file simultaneously. Therefore,
  10. * an unlabeling will never occur in the middle of a block.
  11. */
  12. public void resetTargets()
  13. {
  14. if (type == Token.FINALLY) {
  15. resetTargets_r();
  16. } else {
  17. Kit.codeBug();
  18. }
  19. }

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

  1. /**
  2. * Recursively unlabel every TARGET or YIELD node in the tree.
  3. *
  4. * This is used and should only be used for inlining finally blocks where
  5. * jsr instructions used to be. It is somewhat hackish, but implementing
  6. * a clone() operation would take much, much more effort.
  7. *
  8. * This solution works for inlining finally blocks because you should never
  9. * be writing any given block to the class file simultaneously. Therefore,
  10. * an unlabeling will never occur in the middle of a block.
  11. */
  12. public void resetTargets()
  13. {
  14. if (type == Token.FINALLY) {
  15. resetTargets_r();
  16. } else {
  17. Kit.codeBug();
  18. }
  19. }

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

  1. /**
  2. * Recursively unlabel every TARGET or YIELD node in the tree.
  3. *
  4. * This is used and should only be used for inlining finally blocks where
  5. * jsr instructions used to be. It is somewhat hackish, but implementing
  6. * a clone() operation would take much, much more effort.
  7. *
  8. * This solution works for inlining finally blocks because you should never
  9. * be writing any given block to the class file simultaneously. Therefore,
  10. * an unlabeling will never occur in the middle of a block.
  11. */
  12. public void resetTargets()
  13. {
  14. if (type == Token.FINALLY) {
  15. resetTargets_r();
  16. } else {
  17. Kit.codeBug();
  18. }
  19. }

相关文章