Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skiplang/compiler/src/AsmOutput.sk
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ private fun needsQuotes(s: String): Bool {

// This needs to be made reversible and deal correctly with name clashes.
// See T22100866
private fun mangle(name: String): String {
fun mangle(name: String): String {
i = name.getIter();
String::tabulate(name.length(), _ -> {
i.next().fromSome() match {
Expand Down
2 changes: 1 addition & 1 deletion skiplang/compiler/src/Config.sk
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private fun default_lib_name(output: ?String): String {
}
}

private class Config{
class Config{
release: Bool,
verbose: Bool,
debug: Bool,
Expand Down
2 changes: 1 addition & 1 deletion skiplang/compiler/src/OuterIstToIR.sk
Original file line number Diff line number Diff line change
Expand Up @@ -4881,7 +4881,7 @@ private const kEmptyMethods: UnorderedMap<
SFunctionID,
> = UnorderedMap[];

private fun makeOuterIst(context: mutable SKStore.Context): OuterIst.Program {
fun makeOuterIst(context: mutable SKStore.Context): OuterIst.Program {
// run the compiler front end from parsing to type checking
typedAst = SkipMain.type_program(context);
// OuterIst skeleton is built here, but code is done lazily
Expand Down