Rename db types relating to local classes

These now all refer to types or classes-or-interfaces.
This commit is contained in:
Chris Smowton
2021-09-02 14:47:23 +01:00
parent e8bdc8ba17
commit 29b9231f49
6 changed files with 17 additions and 15 deletions

View File

@@ -787,9 +787,9 @@ class LocalVariableDeclStmt extends Stmt, @localvariabledeclstmt {
}
/** A statement that declares a local class or interface. */
class LocalTypeDeclStmt extends Stmt, @localclassdeclstmt {
class LocalTypeDeclStmt extends Stmt, @localtypedeclstmt {
/** Gets the local type declared by this statement. */
LocalClassOrInterface getLocalType() { isLocalClass(result, this) }
LocalClassOrInterface getLocalType() { isLocalClassOrInterface(result, this) }
/**
* DEPRECATED: Renamed `getLocalType` to reflect the fact that