Files
story-edit-web/ir_core/__init__.py

15 lines
545 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
"""ir_coreStory IR 校验 + 编译 + 词典的共享内核。
编译器 CLIir_compile.pyM5Web 后端共用此包,保证试走/校验/导出口径一致。
"""
from .dictionary import CompileError, Dictionary, load_dictionary
from .compile import compile_ir, extract_texts, expand_out_refs
from .validate import validate, collect_point_refs
__all__ = [
"CompileError", "Dictionary", "load_dictionary",
"compile_ir", "extract_texts", "expand_out_refs",
"validate", "collect_point_refs",
]