我想知道 Rascal 是如何读取这样的 Java 注释的:
//This intent is used to share the picture between Android applications
Intent shareIntent = new Intent();
或这个:
/**
* This method can be called to share the picture between Android Applications
*/
private void shareImage() {
...
}
createAstFromFile 方法似乎跳过了这些注释。
提前致谢。