Skip to content
Merged
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
7 changes: 3 additions & 4 deletions debugAdapterVSCode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@
"initialConfigurations": [
{
"type": "dcal",
"name": "dcal",
"request": "attach",
"name": "DCal DSL",
"stopOnEntry": true,
"port": 4711
"debugServer": 4711
}
]
}
]
}
}
}
12 changes: 4 additions & 8 deletions langs/tla/TLAParser.test.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ package forja.langs.tla

import forja.*
import forja.source.{Source, SourceRange}
// import forja.dsl.*
// import forja.manip.DebugAdapter

class TLAParserTests extends munit.FunSuite, test.WithTLACorpus:
self =>
Expand All @@ -29,14 +31,8 @@ class TLAParserTests extends munit.FunSuite, test.WithTLACorpus:

assume(!top.hasErrors, top)

TLAParser(
top,
// tracer = DebugAdapter(
// "localhost",
// 4711
// )
// , tracer = Manip.RewriteDebugTracer(os.pwd / "dbg_passes")
)
// instrumentWithTracer(DebugAdapter("localhost", 4711)):
// TLAParser(top)

// re-enable if interesting:
// val folder = os.SubPath(file.subRelativeTo(clonesDir).segments.init)
Expand Down