1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

js: add missing start_digraph() for the js backend (#12638)

This commit is contained in:
pancake 2021-12-01 13:05:18 +01:00 committed by GitHub
parent f5d283721e
commit 6f297cdfaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,6 @@
module dotgraph
pub fn start_digraph() {
println('digraph G {')
#JS.process.on('exit', fn () { println('}') })
}