all: use `a !in b` instead of `!(a in b)`

pull/4601/head
yuyi 2020-04-26 12:39:23 +08:00 committed by GitHub
parent 2b4ac0e63a
commit 541b058e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 70 additions and 70 deletions

View File

@ -92,7 +92,7 @@ fn main() {
} }
mut cli_args_no_files := []string mut cli_args_no_files := []string
for a in os.args { for a in os.args {
if !(a in files) { if a !in files {
cli_args_no_files << a cli_args_no_files << a
} }
} }

View File

@ -364,7 +364,7 @@ fn resolve_dependencies(name, module_path string, module_names []string) {
mut deps := []string mut deps := []string
// filter out dependencies that were already specified by the user // filter out dependencies that were already specified by the user
for d in vmod.deps { for d in vmod.deps {
if !(d in module_names) { if d !in module_names {
deps << d deps << d
} }
} }

View File

@ -7,7 +7,7 @@ const (
NUMERIC_CHAR = [`0`,`1`,`2`,`3`,`4`,`5`,`6`,`7`,`8`,`9`,`.`,`e`,`E`] NUMERIC_CHAR = [`0`,`1`,`2`,`3`,`4`,`5`,`6`,`7`,`8`,`9`,`.`,`e`,`E`]
) )
// Convert expression to Reverse Polish Notation. // Convert expression to Reverse Polish Notation.
fn expr_to_rev_pol(expr string) ?[]string { fn expr_to_rev_pol(expr string) ?[]string {
if expr == '' { if expr == '' {
return error('err: empty expression') return error('err: empty expression')
@ -27,11 +27,11 @@ fn expr_to_rev_pol(expr string) ?[]string {
else if end_pos==pos { else if end_pos==pos {
op := expr[pos].str() op := expr[pos].str()
match op { match op {
'(' { '(' {
stack << op stack << op
} }
'*', '/' { '*', '/' {
for stack.len>0 && !(stack.last() in ['(', '+', '-']) { for stack.len>0 && stack.last() !in ['(', '+', '-'] {
rev_pol << stack.last() rev_pol << stack.last()
stack.delete(stack.len-1) stack.delete(stack.len-1)
} }
@ -60,7 +60,7 @@ fn expr_to_rev_pol(expr string) ?[]string {
} }
for stack.len>0 { for stack.len>0 {
top := stack.last() top := stack.last()
rev_pol << top rev_pol << top
stack.delete(stack.len-1) stack.delete(stack.len-1)
} }
return rev_pol return rev_pol
@ -83,7 +83,7 @@ fn eval_rev_pol(rev_pol []string) ?f64 {
'+' { stack << oprand_l+oprand_r } '+' { stack << oprand_l+oprand_r }
'-' { stack << oprand_l-oprand_r } '-' { stack << oprand_l-oprand_r }
'*' { stack << oprand_l*oprand_r } '*' { stack << oprand_l*oprand_r }
'/' { '/' {
if oprand_r == 0 { if oprand_r == 0 {
return error('err: divide by zero') return error('err: divide by zero')
} }
@ -102,7 +102,7 @@ fn eval_rev_pol(rev_pol []string) ?f64 {
fn is_num_string(str string) bool { fn is_num_string(str string) bool {
for c in str { for c in str {
if !(c in NUMERIC_CHAR) { if c !in NUMERIC_CHAR {
return false return false
} }
} }
@ -125,10 +125,10 @@ fn main() {
eprintln(err) eprintln(err)
continue continue
} }
res := eval_rev_pol(rev_pol) or { res := eval_rev_pol(rev_pol) or {
eprintln(err) eprintln(err)
continue continue
} }
println(res) println(res)
} }
} }

View File

@ -123,7 +123,7 @@ fn new_clipboard() &Clipboard {
// Initialize a new clipboard of the given selection type. // Initialize a new clipboard of the given selection type.
// We can initialize multiple clipboard instances and use them separately // We can initialize multiple clipboard instances and use them separately
fn new_x11_clipboard(selection AtomType) &Clipboard { fn new_x11_clipboard(selection AtomType) &Clipboard {
if !(selection in [.clipboard, .primary, .secondary]) { if selection !in [.clipboard, .primary, .secondary] {
panic("Wrong AtomType. Must be one of .primary, .secondary or .clipboard.") panic("Wrong AtomType. Must be one of .primary, .secondary or .clipboard.")
} }

View File

@ -18,7 +18,7 @@ fn test_crypto_rand_read() {
return return
} }
assert r2.len == no_bytes assert r2.len == no_bytes
mut difference := 0 mut difference := 0
for i, _ in r1 { for i, _ in r1 {
difference += if r1[i] == r2[i] {0} else {1} difference += if r1[i] == r2[i] {0} else {1}
@ -42,7 +42,7 @@ fn test_crypto_rand_int_u64() {
return return
} }
n := int(r) n := int(r)
if !(n in unique) { if n !in unique {
unique << n unique << n
} }
} }

View File

@ -207,7 +207,7 @@ pub fn (req &Request) do() ?Response {
return error(err) return error(err)
} }
resp = qresp resp = qresp
if !(resp.status_code in [301, 302, 303, 307, 308]) { if resp.status_code !in [301, 302, 303, 307, 308] {
break break
} }
// follow any redirects // follow any redirects
@ -315,13 +315,13 @@ fn parse_response(resp string) Response {
fn (req &Request) build_request_headers(method, host_name, path string) string { fn (req &Request) build_request_headers(method, host_name, path string) string {
ua := req.user_agent ua := req.user_agent
mut uheaders := []string mut uheaders := []string
if !('Host' in req.headers) { if 'Host' !in req.headers {
uheaders << 'Host: $host_name\r\n' uheaders << 'Host: $host_name\r\n'
} }
if !('User-Agent' in req.headers) { if 'User-Agent' !in req.headers {
uheaders << 'User-Agent: $ua\r\n' uheaders << 'User-Agent: $ua\r\n'
} }
if req.data.len > 0 && !('Content-Length' in req.headers) { if req.data.len > 0 && 'Content-Length' !in req.headers {
uheaders << 'Content-Length: ${req.data.len}\r\n' uheaders << 'Content-Length: ${req.data.len}\r\n'
} }
for key, val in req.headers { for key, val in req.headers {

View File

@ -247,7 +247,7 @@ pub fn (b Builder) find_module_path(mod, fpath string) ?string {
vmod_file_location := vmod.mod_file_cacher.get(fpath) vmod_file_location := vmod.mod_file_cacher.get(fpath)
mod_path := module_path(mod) mod_path := module_path(mod)
mut module_lookup_paths := []string mut module_lookup_paths := []string
if vmod_file_location.vmod_file.len != 0 && !(vmod_file_location.vmod_folder in b.module_search_paths) { if vmod_file_location.vmod_file.len != 0 && vmod_file_location.vmod_folder !in b.module_search_paths {
module_lookup_paths << vmod_file_location.vmod_folder module_lookup_paths << vmod_file_location.vmod_folder
} }
module_lookup_paths << b.module_search_paths module_lookup_paths << b.module_search_paths

View File

@ -376,10 +376,10 @@ pub fn (mut c Checker) infix_expr(infix_expr mut ast.InfixExpr) table.Type {
else { } else { }
} }
// TODO: Absorb this block into the above single side check block to accelerate. // TODO: Absorb this block into the above single side check block to accelerate.
if left_type == table.bool_type && !(infix_expr.op in [.eq, .ne, .logical_or, .and]) { if left_type == table.bool_type && infix_expr.op !in [.eq, .ne, .logical_or, .and] {
c.error('bool types only have the following operators defined: `==`, `!=`, `||`, and `&&`', c.error('bool types only have the following operators defined: `==`, `!=`, `||`, and `&&`',
infix_expr.pos) infix_expr.pos)
} else if left_type == table.string_type && !(infix_expr.op in [.plus, .eq, .ne, .lt, .gt, .le, .ge]) { } else if left_type == table.string_type && infix_expr.op !in [.plus, .eq, .ne, .lt, .gt, .le, .ge] {
// TODO broken !in // TODO broken !in
c.error('string types only have the following operators defined: `==`, `!=`, `<`, `>`, `<=`, `>=`, and `&&`', c.error('string types only have the following operators defined: `==`, `!=`, `<`, `>`, `<=`, `>=`, and `&&`',
infix_expr.pos) infix_expr.pos)
@ -602,7 +602,7 @@ pub fn (mut c Checker) call_fn(call_expr mut ast.CallExpr) table.Type {
mut f := table.Fn{} mut f := table.Fn{}
mut found := false mut found := false
// try prefix with current module as it would have never gotten prefixed // try prefix with current module as it would have never gotten prefixed
if !fn_name.contains('.') && !(call_expr.mod in ['builtin', 'main']) { if !fn_name.contains('.') && call_expr.mod !in ['builtin', 'main'] {
name_prefixed := '${call_expr.mod}.$fn_name' name_prefixed := '${call_expr.mod}.$fn_name'
if f1 := c.table.find_fn(name_prefixed) { if f1 := c.table.find_fn(name_prefixed) {
call_expr.name = name_prefixed call_expr.name = name_prefixed
@ -746,7 +746,7 @@ pub fn (mut c Checker) check_or_block(call_expr mut ast.CallExpr, ret_type table
return return
} }
ast.BranchStmt { ast.BranchStmt {
if !(it.tok.kind in [.key_continue, .key_break]) { if it.tok.kind !in [.key_continue, .key_break] {
c.error('only break/continue is allowed as a branch statement in the end of an `or {}` block', c.error('only break/continue is allowed as a branch statement in the end of an `or {}` block',
it.tok.position()) it.tok.position())
return return
@ -1123,7 +1123,7 @@ fn (mut c Checker) stmt(node ast.Stmt) {
it.fields[i].typ = typ it.fields[i].typ = typ
for cd in c.const_deps { for cd in c.const_deps {
for j, f in it.fields { for j, f in it.fields {
if j != i && cd in field_names && cd == f.name && !(j in done_fields) { if j != i && cd in field_names && cd == f.name && j !in done_fields {
needs_order = true needs_order = true
x := field_order[j] x := field_order[j]
field_order[j] = field_order[i] field_order[j] = field_order[i]
@ -1165,7 +1165,7 @@ fn (mut c Checker) stmt(node ast.Stmt) {
c.fn_return_type = it.return_type c.fn_return_type = it.return_type
c.stmts(it.stmts) c.stmts(it.stmts)
if !it.is_c && !it.is_js && !it.no_body && it.return_type != table.void_type && if !it.is_c && !it.is_js && !it.no_body && it.return_type != table.void_type &&
!c.returns && !(it.name in ['panic', 'exit']) { !c.returns && it.name !in ['panic', 'exit'] {
c.error('missing return at end of function `$it.name`', it.pos) c.error('missing return at end of function `$it.name`', it.pos)
} }
c.returns = false c.returns = false
@ -1286,7 +1286,7 @@ pub fn (mut c Checker) expr(node ast.Expr) table.Type {
type_sym := c.table.get_type_symbol(it.typ) type_sym := c.table.get_type_symbol(it.typ)
if expr_type_sym.kind == .sum_type { if expr_type_sym.kind == .sum_type {
info := expr_type_sym.info as table.SumType info := expr_type_sym.info as table.SumType
if !(it.typ in info.variants) { if it.typ !in info.variants {
c.error('cannot cast `$expr_type_sym.name` to `$type_sym.name`', it.pos) c.error('cannot cast `$expr_type_sym.name` to `$type_sym.name`', it.pos)
// c.error('only $info.variants can be casted to `$typ`', it.pos) // c.error('only $info.variants can be casted to `$typ`', it.pos)
} }
@ -1437,7 +1437,7 @@ pub fn (mut c Checker) ident(ident mut ast.Ident) table.Type {
// TODO: move this // TODO: move this
if c.const_deps.len > 0 { if c.const_deps.len > 0 {
mut name := ident.name mut name := ident.name
if !name.contains('.') && !(ident.mod in ['builtin', 'main']) { if !name.contains('.') && ident.mod !in ['builtin', 'main'] {
name = '${ident.mod}.$ident.name' name = '${ident.mod}.$ident.name'
} }
if name == c.const_decl { if name == c.const_decl {
@ -1487,7 +1487,7 @@ pub fn (mut c Checker) ident(ident mut ast.Ident) table.Type {
} }
// prepend mod to look for fn call or const // prepend mod to look for fn call or const
mut name := ident.name mut name := ident.name
if !name.contains('.') && !(ident.mod in ['builtin', 'main']) { if !name.contains('.') && ident.mod !in ['builtin', 'main'] {
name = '${ident.mod}.$ident.name' name = '${ident.mod}.$ident.name'
} }
if obj := c.file.global_scope.find(name) { if obj := c.file.global_scope.find(name) {
@ -1791,7 +1791,7 @@ pub fn (mut c Checker) enum_val(node mut ast.EnumVal) table.Type {
info := typ_sym.enum_info() info := typ_sym.enum_info()
// rintln('checker: x = $info.x enum val $c.expected_type $typ_sym.name') // rintln('checker: x = $info.x enum val $c.expected_type $typ_sym.name')
// println(info.vals) // println(info.vals)
if !(node.val in info.vals) { if node.val !in info.vals {
c.error('enum `$typ_sym.name` does not have a value `$node.val`', node.pos) c.error('enum `$typ_sym.name` does not have a value `$node.val`', node.pos)
} }
node.typ = typ node.typ = typ
@ -1862,7 +1862,7 @@ fn (mut c Checker) warn_or_error(message string, pos token.Position, warn bool)
} }
} else { } else {
c.nr_errors++ c.nr_errors++
if !(pos.line_nr in c.error_lines) { if pos.line_nr !in c.error_lines {
c.errors << scanner.Error{ c.errors << scanner.Error{
reporter: scanner.Reporter.checker reporter: scanner.Reporter.checker
pos: pos pos: pos

View File

@ -24,7 +24,7 @@ mut:
} }
pub fn (o mut OrderedDepMap) set(name string, deps []string) { pub fn (o mut OrderedDepMap) set(name string, deps []string) {
if !(name in o.data) { if name !in o.data {
o.keys << name o.keys << name
} }
o.data[name] = deps o.data[name] = deps
@ -33,7 +33,7 @@ pub fn (o mut OrderedDepMap) set(name string, deps []string) {
pub fn (o mut OrderedDepMap) add(name string, deps []string) { pub fn (o mut OrderedDepMap) add(name string, deps []string) {
mut d := o.data[name] mut d := o.data[name]
for dep in deps { for dep in deps {
if !(dep in d) { if dep !in d {
d << dep d << dep
} }
} }
@ -45,7 +45,7 @@ pub fn (o &OrderedDepMap) get(name string) []string {
} }
pub fn (o mut OrderedDepMap) delete(name string) { pub fn (o mut OrderedDepMap) delete(name string) {
if !(name in o.data) { if name !in o.data {
panic('delete: no such key: $name') panic('delete: no such key: $name')
} }
for i, _ in o.keys { for i, _ in o.keys {
@ -60,7 +60,7 @@ pub fn (o mut OrderedDepMap) delete(name string) {
pub fn (o mut OrderedDepMap) apply_diff(name string, deps []string) { pub fn (o mut OrderedDepMap) apply_diff(name string, deps []string) {
mut diff := []string mut diff := []string
for dep in o.data[name] { for dep in o.data[name] {
if !(dep in deps) { if dep !in deps {
diff << dep diff << dep
} }
} }
@ -141,7 +141,7 @@ pub fn (graph &DepGraph) display_cycles() string {
mut out := '\n' mut out := '\n'
for node in graph.nodes { for node in graph.nodes {
for dep in node.deps { for dep in node.deps {
if !(dep in node_names) { if dep !in node_names {
continue continue
} }
dn := node_names[dep] dn := node_names[dep]

View File

@ -109,7 +109,7 @@ fn (mut f Fmt) imports(imports []ast.Import) {
*/ */
// f.out_imports.writeln('import (') // f.out_imports.writeln('import (')
for imp in imports { for imp in imports {
if !(imp.mod in f.used_imports) { if imp.mod !in f.used_imports {
// TODO bring back once only unused imports are removed // TODO bring back once only unused imports are removed
// continue // continue
} }
@ -886,7 +886,7 @@ fn (mut f Fmt) call_expr(node ast.CallExpr) {
// a `node.left` expression. Import `time` automatically. // a `node.left` expression. Import `time` automatically.
// TODO fetch all available modules // TODO fetch all available modules
if it.name in ['time', 'os', 'strings', 'math', 'json', 'base64'] { if it.name in ['time', 'os', 'strings', 'math', 'json', 'base64'] {
if !(it.name in f.auto_imports) { if it.name !in f.auto_imports {
f.auto_imports << it.name f.auto_imports << it.name
f.file.imports << ast.Import{ f.file.imports << ast.Import{
mod: it.name mod: it.name

View File

@ -271,7 +271,7 @@ pub fn (mut g Gen) typ(t table.Type) string {
if t.is_ptr() { if t.is_ptr() {
styp = styp.replace('*', '_ptr') styp = styp.replace('*', '_ptr')
} }
if !(styp in g.optionals) { if styp !in g.optionals {
// println(styp) // println(styp)
x := styp // .replace('*', '_ptr') // handle option ptrs x := styp // .replace('*', '_ptr') // handle option ptrs
g.typedefs2.writeln('typedef Option $x;') g.typedefs2.writeln('typedef Option $x;')
@ -1377,7 +1377,7 @@ fn (mut g Gen) infix_expr(node ast.InfixExpr) {
} else if node.op in [.eq, .ne] && left_sym.kind == .array && right_sym.kind == .array { } else if node.op in [.eq, .ne] && left_sym.kind == .array && right_sym.kind == .array {
styp := g.table.value_type(node.left_type) styp := g.table.value_type(node.left_type)
ptr_typ := g.typ(node.left_type).split('_')[1] ptr_typ := g.typ(node.left_type).split('_')[1]
if !(ptr_typ in g.array_fn_definitions) { if ptr_typ !in g.array_fn_definitions {
sym := g.table.get_type_symbol(left_sym.array_info().elem_type) sym := g.table.get_type_symbol(left_sym.array_info().elem_type)
g.generate_array_equality_fn(ptr_typ, styp, sym) g.generate_array_equality_fn(ptr_typ, styp, sym)
} }
@ -2197,7 +2197,7 @@ fn (mut g Gen) write_builtin_types() {
fn (mut g Gen) write_sorted_types() { fn (mut g Gen) write_sorted_types() {
mut types := []table.TypeSymbol // structs that need to be sorted mut types := []table.TypeSymbol // structs that need to be sorted
for typ in g.table.types { for typ in g.table.types {
if !(typ.name in builtins) { if typ.name !in builtins {
types << typ types << typ
} }
} }
@ -2294,7 +2294,7 @@ fn (g Gen) sort_structs(typesa []table.TypeSymbol) []table.TypeSymbol {
for field in info.fields { for field in info.fields {
dep := g.table.get_type_symbol(field.typ).name dep := g.table.get_type_symbol(field.typ).name
// skip if not in types list or already in deps // skip if not in types list or already in deps
if !(dep in type_names) || dep in field_deps || field.typ.is_ptr() { if dep !in type_names || dep in field_deps || field.typ.is_ptr() {
continue continue
} }
field_deps << dep field_deps << dep
@ -3016,7 +3016,7 @@ fn (mut g Gen) gen_str_for_type_with_styp(typ table.Type, styp string) string {
str_fn_name := styp_to_str_fn_name(styp) str_fn_name := styp_to_str_fn_name(styp)
already_generated_key := '${styp}:${str_fn_name}' already_generated_key := '${styp}:${str_fn_name}'
// generate for type // generate for type
if !sym.has_method('str') && !(already_generated_key in g.str_types) { if !sym.has_method('str') && already_generated_key !in g.str_types {
g.str_types << already_generated_key g.str_types << already_generated_key
match sym.info { match sym.info {
table.Alias { g.gen_str_default(sym, styp, str_fn_name) } table.Alias { g.gen_str_default(sym, styp, str_fn_name) }
@ -3031,7 +3031,7 @@ fn (mut g Gen) gen_str_for_type_with_styp(typ table.Type, styp string) string {
// if varg, generate str for varg // if varg, generate str for varg
if typ.flag_is(.variadic) { if typ.flag_is(.variadic) {
varg_already_generated_key := 'varg_$already_generated_key' varg_already_generated_key := 'varg_$already_generated_key'
if !(varg_already_generated_key in g.str_types) { if varg_already_generated_key !in g.str_types {
g.gen_str_for_varg(styp, str_fn_name) g.gen_str_for_varg(styp, str_fn_name)
g.str_types << varg_already_generated_key g.str_types << varg_already_generated_key
} }

View File

@ -180,7 +180,7 @@ fn (mut g Gen) fn_args(args []table.Arg, is_variadic bool) {
is_varg := i == args.len - 1 && is_variadic is_varg := i == args.len - 1 && is_variadic
if is_varg { if is_varg {
varg_type_str := int(arg.typ).str() varg_type_str := int(arg.typ).str()
if !(varg_type_str in g.variadic_args) { if varg_type_str !in g.variadic_args {
g.variadic_args[varg_type_str] = 0 g.variadic_args[varg_type_str] = 0
} }
arg_type_name = 'varg_' + g.typ(arg.typ).replace('*', '_ptr') arg_type_name = 'varg_' + g.typ(arg.typ).replace('*', '_ptr')

View File

@ -71,7 +71,7 @@ fn (mut p Parser) array_init() ast.ArrayInit {
for p.tok.kind != .rcbr { for p.tok.kind != .rcbr {
key := p.check_name() key := p.check_name()
p.check(.colon) p.check(.colon)
if !(key in ['len', 'cap', 'init']) { if key !in ['len', 'cap', 'init'] {
p.error('wrong field `$key`, expecting `len`, `cap`, or `init`') p.error('wrong field `$key`, expecting `len`, `cap`, or `init`')
} }
p.expr(0) p.expr(0)

View File

@ -148,7 +148,7 @@ pub fn (mut p Parser) parse_any_type(is_c, is_js, is_ptr bool) table.Type {
name = '${p.imports[name]}.$p.tok.lit' name = '${p.imports[name]}.$p.tok.lit'
} else if p.expr_mod != '' { } else if p.expr_mod != '' {
name = p.expr_mod + '.' + name name = p.expr_mod + '.' + name
} else if !(p.mod in ['builtin', 'main']) && !(name in table.builtin_type_names) { } else if p.mod !in ['builtin', 'main'] && name !in table.builtin_type_names {
// `Foo` in module `mod` means `mod.Foo` // `Foo` in module `mod` means `mod.Foo`
name = p.mod + '.' + name name = p.mod + '.' + name
} }

View File

@ -635,7 +635,7 @@ pub fn (mut p Parser) name_expr() ast.Expr {
// type cast. TODO: finish // type cast. TODO: finish
// if name in table.builtin_type_names { // if name in table.builtin_type_names {
if !known_var && (name in p.table.type_idxs || name_w_mod in p.table.type_idxs) && if !known_var && (name in p.table.type_idxs || name_w_mod in p.table.type_idxs) &&
!(name in ['C.stat', 'C.sigaction']) { name !in ['C.stat', 'C.sigaction'] {
// TODO handle C.stat() // TODO handle C.stat()
mut to_typ := p.parse_type() mut to_typ := p.parse_type()
if p.is_amp { if p.is_amp {

View File

@ -269,7 +269,7 @@ fn (s mut Scanner) ident_dec_number() string {
} }
// 5. // 5.
else if s.text[s.pos] != `)` { else if s.text[s.pos] != `)` {
is_float_without_fraction = true is_float_without_fraction = true
s.pos-- s.pos--
} }
} }
@ -761,7 +761,7 @@ pub fn (s mut Scanner) scan() token.Token {
// Find out if this comment is on its own line (for vfmt) // Find out if this comment is on its own line (for vfmt)
mut is_separate_line_comment := true mut is_separate_line_comment := true
for j := start-2; j >= 0 && s.text[j] != `\n`; j-- { for j := start-2; j >= 0 && s.text[j] != `\n`; j-- {
if !(s.text[j] in [`\t`, ` `]) { if s.text[j] !in [`\t`, ` `] {
is_separate_line_comment = false is_separate_line_comment = false
} }
} }

View File

@ -21,14 +21,14 @@ fn test_in_expression() {
assert a == false assert a == false
a = true && 3 in arr1 a = true && 3 in arr1
assert a == false assert a == false
a = true && !(2 in arr2) a = true && 2 !in arr2
assert a == false assert a == false
a = true && !(3 in arr2) a = true && 3 !in arr2
assert a == true assert a == true
a = true && (2 !in arr2) a = true && 2 !in arr2
assert a == false assert a == false
a = true && (3 !in arr2) a = true && 3 !in arr2
assert a == true assert a == true
a = 1 in arr1 && true a = 1 in arr1 && true
@ -88,14 +88,14 @@ fn test_in_expression_with_string() {
assert a == false assert a == false
a = true && 'abc' in arr1 a = true && 'abc' in arr1
assert a == false assert a == false
a = true && !('bc' in arr2) a = true && 'bc' !in arr2
assert a == false assert a == false
a = true && !('abc' in arr2) a = true && 'abc' !in arr2
assert a == true assert a == true
a = true && ('bc' !in arr2) a = true && 'bc' !in arr2
assert a == false assert a == false
a = true && ('abc' !in arr2) a = true && 'abc' !in arr2
assert a == true assert a == true
a = 'ab' in arr1 && true a = 'ab' in arr1 && true
@ -137,14 +137,14 @@ fn test_optimized_in_expression() {
assert a == false assert a == false
a = true && 3 in [1, 2] a = true && 3 in [1, 2]
assert a == false assert a == false
a = true && !(2 in [0, 2]) a = true && 2 !in [0, 2]
assert a == false assert a == false
a = true && !(3 in [0, 2]) a = true && 3 !in [0, 2]
assert a == true assert a == true
a = true && (2 !in [0, 2]) a = true && 2 !in [0, 2]
assert a == false assert a == false
a = true && (3 !in [0, 2]) a = true && 3 !in [0, 2]
assert a == true assert a == true
a = 1 in [1, 2] && true a = 1 in [1, 2] && true
@ -168,14 +168,14 @@ fn test_optimized_in_expression_with_enum() {
assert a == false assert a == false
a = true && Colors.yellow in [.green, .blue] a = true && Colors.yellow in [.green, .blue]
assert a == false assert a == false
a = true && !(Colors.blue in [.red, .blue]) a = true && Colors.blue !in [.red, .blue]
assert a == false assert a == false
a = true && !(Colors.yellow in [.red, .blue]) a = true && Colors.yellow !in [.red, .blue]
assert a == true assert a == true
a = true && (Colors.blue !in [.red, .blue]) a = true && Colors.blue !in [.red, .blue]
assert a == false assert a == false
a = true && (Colors.yellow !in [.red, .blue]) a = true && Colors.yellow !in [.red, .blue]
assert a == true assert a == true
a = Colors.green in [.green, .blue] && true a = Colors.green in [.green, .blue] && true
@ -199,14 +199,14 @@ fn test_optimized_in_expression_with_string() {
assert a == false assert a == false
a = true && 'abc' in ['ab', 'bc'] a = true && 'abc' in ['ab', 'bc']
assert a == false assert a == false
a = true && !('bc' in ['', 'bc']) a = true && 'bc' !in ['', 'bc']
assert a == false assert a == false
a = true && !('abc' in ['', 'bc']) a = true && 'abc' !in ['', 'bc']
assert a == true assert a == true
a = true && ('bc' !in ['', 'bc']) a = true && 'bc' !in ['', 'bc']
assert a == false assert a == false
a = true && ('abc' !in ['', 'bc']) a = true && 'abc' !in ['', 'bc']
assert a == true assert a == true
a = 'ab' in ['ab', 'bc'] && true a = 'ab' in ['ab', 'bc'] && true

View File

@ -29,7 +29,7 @@ fn main() {
// //
fn testsuite_begin() { fn testsuite_begin() {
if !(os.user_os() in ['linux', 'solaris']) && os.getenv('FORCE_LIVE_TEST').len == 0 { if os.user_os() !in ['linux', 'solaris'] && os.getenv('FORCE_LIVE_TEST').len == 0 {
eprintln('Testing the runtime behaviour of -live mode,') eprintln('Testing the runtime behaviour of -live mode,')
eprintln('is reliable only on Linux for now.') eprintln('is reliable only on Linux for now.')
eprintln('You can still do it by setting FORCE_LIVE_TEST=1 .') eprintln('You can still do it by setting FORCE_LIVE_TEST=1 .')

View File

@ -293,7 +293,7 @@ fn handle_conn<T>(conn net.Socket, app mut T) {
} }
fn (ctx mut Context) parse_form(s string) { fn (ctx mut Context) parse_form(s string) {
if !(ctx.req.method in methods_with_form) { if ctx.req.method !in methods_with_form {
return return
} }
//pos := s.index('\r\n\r\n') //pos := s.index('\r\n\r\n')