mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 13:44:42 +00:00
More documentation.
This commit is contained in:
@@ -17,15 +17,22 @@
|
||||
package com.jpexs.decompiler.graph;
|
||||
|
||||
/**
|
||||
*
|
||||
* Stack for scope.
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class ScopeStack extends TranslateStack {
|
||||
|
||||
/**
|
||||
* Constructs a new ScopeStack.
|
||||
* @param allowEmpty Whether empty stack is allowed
|
||||
*/
|
||||
public ScopeStack(boolean allowEmpty) {
|
||||
super(allowEmpty ? "scope" : null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a new ScopeStack.
|
||||
*/
|
||||
public ScopeStack() {
|
||||
this(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user