Int Literal 的 Base 与后缀处理
语法
整数支持多进制与可能的类型后缀。
语义
字面量先形成无类型或弱类型整数节点,随后由上下文或默认规则确定具体数值类型。
边界
需要单独明确:
- 默认整数类型
- 后缀的优先级
- 溢出报错阶段
这里集中展示 CHIBA level-1 specification,覆盖 core language、control flow、memory、patterns、IR lowering 与 package system 等实现边界。
The docs surface keeps CHIBA level-1 specification pages browsable inside the site, with direct paths into language, control flow, memory, pattern, and lowering rules.
整数支持多进制与可能的类型后缀。
字面量先形成无类型或弱类型整数节点,随后由上下文或默认规则确定具体数值类型。
需要单独明确: