cgen: minor cleanup in stmt() (#8659)

pull/8062/head^2
yuyi 2021-02-10 06:00:43 +08:00 committed by GitHub
parent f3c5f24c17
commit 95c3ef3a6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1042,7 +1042,7 @@ fn (mut g Gen) stmt(node ast.Stmt) {
// if af {
// g.autofree_call_postgen()
// }
if g.inside_ternary == 0 && !node.is_expr && !(node.expr is ast.IfExpr) {
if g.inside_ternary == 0 && !node.is_expr && node.expr !is ast.IfExpr {
g.writeln(';')
}
}

View File

@ -1039,7 +1039,7 @@ fn (mut g JsGen) gen_struct_decl(node ast.StructDecl) {
}
// gen toString method
fn_names := fns.map(it.name)
if !('toString' in fn_names) {
if 'toString' !in fn_names {
g.writeln('toString() {')
g.inc_indent()
g.write('return `$js_name {')
@ -1569,13 +1569,13 @@ fn (mut g JsGen) gen_type_cast_expr(it ast.CastExpr) {
|| (it.expr is ast.FloatLiteral && it.typ in table.float_type_idxs))
typ := g.typ(it.typ)
if !is_literal {
if !(typ in js.v_types) || g.ns.name == 'builtin' {
if typ !in js.v_types || g.ns.name == 'builtin' {
g.write('new ')
}
g.write('${typ}(')
}
g.expr(it.expr)
if typ == 'string' && !(it.expr is ast.StringLiteral) {
if typ == 'string' && it.expr !is ast.StringLiteral {
g.write('.toString()')
}
if !is_literal {