mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
builtin: fix warnings for tests inside vlib/builtin/js
This commit is contained in:
parent
f6cb772347
commit
96c8188083
4 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
import strings
|
||||
// import strings
|
||||
|
||||
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
||||
// Use of this source code is governed by an MIT license
|
||||
|
@ -636,6 +636,7 @@ fn test_for_loop_two() {
|
|||
|
||||
fn test_quote() {
|
||||
a := `'`
|
||||
println(a)
|
||||
println('testing double quotes')
|
||||
b := 'hi'
|
||||
assert b == 'hi'
|
||||
|
@ -727,6 +728,7 @@ fn test_raw() {
|
|||
|
||||
fn test_raw_with_quotes() {
|
||||
raw := r"some'" + r'"thing' // " should be escaped in the generated C code
|
||||
println(raw)
|
||||
// assert raw[0] == `s`
|
||||
// assert raw[5] == `"`
|
||||
// assert raw[6] == `t`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue