⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 followingaxis.java

📁 A framework written in Java for implementing high-level and dynamic languages, compiling them into J
💻 JAVA
字号:
// Copyright (c) 2003  Per M.A. Bothner.// This is free software;  for terms and warranty disclaimer see ./COPYING.package gnu.kawa.xml;import gnu.lists.*;/** Used to implement a following:: step in a path expression. */public class FollowingAxis extends TreeScanner{  public static FollowingAxis make (NodePredicate type)  {    FollowingAxis axis = new FollowingAxis();    axis.type = type;    return axis;  }  public void scan (AbstractSequence seq, int ipos, PositionConsumer out)  {    int limit = seq.endPos();    ipos = seq.nextPos(ipos);    if (ipos != 0 && type.isInstancePos(seq, ipos))      out.writePosition(seq, ipos);    for (;;)      {	ipos = seq.nextMatching(ipos, type, limit, true);	if (ipos == 0)	  break;	out.writePosition(seq, ipos);      }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -