📄 ifstate.java
字号:
// Copyright (c) 1997 Per M.A. Bothner.// This is free software; for terms and warranty disclaimer see ./COPYING.package gnu.bytecode;import java.io.*;/** The state of a conditional expression or statement. */public class IfState { /** The surrounding IfState, if any. */ IfState previous; /** True if we are curently in the else part of the conditional. */ boolean doing_else; /** The (not-yet-defined) label at the end of the current sub-clause. * If doing_else, this is the end of the entire conditional; * otherwise, it is the end of the "then" clause. */ Label end_label; /** The stack size before the "then" clause. */ int start_stack_size; /** The types that were pushed by the then-clause. */ Type[] then_stacked_types; public IfState (CodeAttr code) { previous = code.if_stack; code.if_stack = this; end_label = new Label(code); start_stack_size = code.SP; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -