mirror of
https://github.com/Ky0toFu/Mirror-Flowers.git
synced 2025-09-18 13:01:23 +00:00
12 lines
307 B
Python
12 lines
307 B
Python
import javalang
|
|
|
|
class JavaParser:
|
|
def parse(self, code: str):
|
|
"""
|
|
解析Java代码生成AST
|
|
"""
|
|
try:
|
|
ast = javalang.parse.parse(code)
|
|
return ast
|
|
except Exception as e:
|
|
raise Exception(f"Java解析错误: {str(e)}") |