Rascal AST访问访问注释

时间:2016-05-24 07:15:03

标签: rascal

好的,所以当我访问它时,我想访问节点的注释。举个例子:

visit (myAST) {
  case someNode(str name): {
    // How do I now access the @src annotation of someNode here?
  }
};

我已尝试过以下操作,但这不起作用:

visit (myAST) {
  case someNode(str name): {
    parents = getTraversalContext();

    iprintln(parents[0]); // This print shows someNode with the @src annotation.
    iprintln(parents[0]@src); // This gives the error: get-annotation not supported on value at...
  }
};

我在这里做错了什么?我的做法错了吗?

1 个答案:

答案 0 :(得分:2)

很好的问题,最好的方法是在模式中引入一个变量,比如sn并使用它来获取注释

visit (myAST) {
   case sn:someNode(str name): {
     // Access the @src annotation of someNode here by sn@src
   }
 };

作为旁注:您使用函数getTraversalContext但我强烈建议您避免使用它,因为它是实验性的并且很可能在将来发生变化。承认:我们应该标记它。