More documentation.

This commit is contained in:
Jindra Petřík
2024-08-06 06:17:00 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions

View File

@@ -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);
}