Make Formatter Happy

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-13 08:27:41 -04:00
parent d323434787
commit 4c63e7f92a
7 changed files with 43 additions and 36 deletions
+3 -4
View File
@@ -58,7 +58,7 @@ public struct CompilerContext {
/// Update a compiler context
///
/// Create a new compiler context based on the current with the same types and new names.
///
///
/// - Parameter names: a ``LexicalScopes`` with the updated names for the newly created compiler context.
/// - Returns: A new compiler context based on the current with the same types and new names.
public func update(newNames names: LexicalScopes) -> CompilerContext {
@@ -68,12 +68,11 @@ public struct CompilerContext {
/// Update a compiler context
///
/// Create a new compiler context based on the current with the same names and new types.
///
///
/// - Parameter types: a ``LexicalScopes`` with the updated types for the newly created compiler context.
/// - Returns: A new compiler context based on the current with the same names and new types.
public func update(newTypes types: LexicalScopes) -> CompilerContext {
return CompilerContext(withNames: self.names, withTypes: types)
}
}
}