GP-0: Fixing some javadoc

This commit is contained in:
Ryan Kurtz 2025-01-27 10:03:23 -05:00
parent 8bc682537f
commit 7468e5f5f4
2 changed files with 5 additions and 7 deletions

View file

@ -36,16 +36,16 @@ public class InputContextScraper {
}
/**
* Get set of all valid input contexts that affect constructor selection.
* {@return the set of all valid input contexts that affect constructor selection.}
*
* <ol>
* <li>Start with mask of the language's default context
* <li>Start with mask of the language's default context</li>
* <li>Scrape language for <code>globalset</code> context variables and OR their masks into our
* mask
* mask</li>
* <li>Flip bits of our mask to get mask of context variables not used as input
* (local/transient)
* (local/transient)</li>
* <li>Check constructor constraints and use mask to get values of relevant input context
* variables
* variables</li>
* </ol>
*/
public Set<AssemblyPatternBlock> scrapeInputContexts() {

View file

@ -36,8 +36,6 @@ public class HighCodeSymbol extends HighSymbol {
/**
* Construct with a backing CodeSymbol. An attempt is made to also find a backing Data object.
* @param sym is the backing CodeSymbol
* @param dataType is the (possibly distinct) data-type associated with the new HighSymbol
* @param sz is the storage size, in bytes, of the symbol
* @param func is the decompiler function model owning the new HighSymbol
*/
public HighCodeSymbol(CodeSymbol sym, HighFunction func) {