v/vlib/builtin/js/builtin.v

36 lines
562 B
V
Raw Normal View History

2020-02-03 05:00:36 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-09-14 22:48:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module builtin
pub fn exit(code int) {
println('js.exit()')
}
// isnil returns true if an object is nil (only for C objects).
pub fn isnil(v voidptr) bool {
return v == 0
}
pub fn panic(s string) {
eprintln('V panic: ' + s)
2019-09-14 22:48:30 +02:00
exit(1)
}
pub fn println(s string) {
2019-10-25 10:24:34 +02:00
#console.log(s.str)
2019-09-14 22:48:30 +02:00
}
pub fn eprintln(s string) {
2019-10-19 14:42:37 +02:00
#console.error(s)
2019-09-14 22:48:30 +02:00
}
pub fn print(s string) {
#console.log(s)
}