Problem when using listener mode
还没有人认领这个 Issue。
评估
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 新手友好度
- 45/100
- Issue 类型
- 缺陷
- 描述清晰度
- 基本清楚
- 活跃度
- 停滞
- 技术栈
- python, typescript
- 领域
- compilers
调研方向
使用 Python3Parser.parse 和 parser.listen 重现这两个示例,比较带有和不带有末尾换行符的输入。先从最后一条 import 语句附近的 parser 和 listener 行为入手,然后验证对于不带末尾换行符的代码,listener 回调能够正常工作,同时保留现有的多行行为。
由索引模型根据 Issue 内容生成。
描述
When using listener mode the parser is always expecting a line break after each line of python code.
For instance,
const parser = new Python3Parser();
const python ='import sys\nfor i in sys.argv:\n print(i)';
// parseTree
const tree = parser.parse(python);
class MyListener extends Python3Listener {
enterImport_name(ctx): void {
let importName = ctx
.getText()
.toLowerCase()
.match(/(?<=import).+/)?.[0];
console.log('ImportName', importName);
}
}
const listenTableName = new MyListener();
parser.listen(listenTableName, tree);
The above code will work but when I remove '\n' from the python code it won't (Given below).
const parser = new Python3Parser();
const python ='import sys';
// parseTree
const tree = parser.parse(python);
class MyListener extends Python3Listener {
enterImport_name(ctx): void {
let importName = ctx
.getText()
.toLowerCase()
.match(/(?<=import).+/)?.[0];
console.log('ImportName', importName);
}
}
const listenTableName = new MyListener();
parser.listen(listenTableName, tree);
Is there a work around for this? I want to dynamically pass the python code to the parser so it might not always have a line break.
- 主要语言
- JavaScript
- 星标
- 25
- 派生
- 7
- PR 合并指标
- 30 天内没有已合并 PR
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
DTStack/dt-python-parser 的其他 Issue
-
难度 3/5 1-2 天 新手友好度 48/100
DTStack/dt-python-parser#28 ·
-
难度 5/5 一周以上 新手友好度 20/100
DTStack/dt-python-parser#27 · 1 条评论 ·
-
难度 3/5 1-2 天 新手友好度 45/100
DTStack/dt-python-parser#24 · 1 条评论 ·
-
难度 5/5 一周以上 新手友好度 15/100
DTStack/dt-python-parser#15 · 3 条评论 ·
-
支持最新版Python3语法 未关闭
难度 5/5 一周以上 新手友好度 20/100
DTStack/dt-python-parser#11 ·
查看 DTStack/dt-python-parser 的全部 Issue
相似的 Issue
-
bug customer-eng Durable Agents Inngest status: needs triage
难度 2/5 1-3 小时 新手友好度 82/100
-
optimization optimization:agents-md-curator
难度 2/5 1-3 小时 新手友好度 75/100
githubnext/gh-aw-cao#13475 ·
-
[BUG]: "Clear All" in Settings doesn't clear the saved analysis, old data comes back after reload 未关闭bug
难度 2/5 1-3 小时 新手友好度 88/100
AOSSIE-Org/OrgExplorer#253 · 1 条评论 ·
-
难度 2/5 1-3 小时 新手友好度 88/100
oxc-project/oxc#26944 ·
-
ai-observability bug team/ai-observability
难度 2/5 1-3 小时 新手友好度 78/100