Skip to content

Commit

Permalink
formatting and update jacdac
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Oct 27, 2023
1 parent a4b905d commit 87974cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cli/src/devtools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function startProxyServers(
})
server.listen(port, listenHost)

log(` tcpsocket: tcp://${domain}:${tcpPort}`)
log(` tcpsocket : tcp://${domain}:${tcpPort}`)
const tcpServer = net.createServer(socket => {
const sender = "tcp" + ++clientId
const client: DevToolsClient = socket as any
Expand Down Expand Up @@ -363,7 +363,7 @@ function startDbgServer(port: number, options: DevToolsOptions) {

const listenHost = options.internet ? undefined : "127.0.0.1"
const domain = listenHost || "localhost"
console.log(` dbgserver: tcp://${domain}:${port}`)
console.log(` dbgserver : tcp://${domain}:${port}`)
net.createServer(async socket => {
console.log("dbgserver: connection")
let session: DsDapSession
Expand Down
2 changes: 1 addition & 1 deletion compiler/src/serverinfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function serverInfo(host: Host) {
return stmt
.getFullText()
.replace(/\s*\/\*\*\s+(\*\s*)*/, "")
.replace(/\n[^]*/, "")
.replace(/\r?\n[^]*/, "")
}

function customDriver(stmt: ts.ClassDeclaration) {
Expand Down
2 changes: 1 addition & 1 deletion jacdac-ts
Submodule jacdac-ts updated 1 files
+1 −1 src/jdom/spec.ts
2 changes: 1 addition & 1 deletion runtime/jacdac-c
Submodule jacdac-c updated 1 files
+1 −1 jacdac

0 comments on commit 87974cc

Please sign in to comment.