Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidating expr_to_str functions. #353

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/comp/middle/trans.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,12 @@ import std.option.none;

import front.ast;
import front.creader;
import pretty.pprust;
import driver.session;
import middle.ty;
import back.Link;
import back.x86;
import back.abi;

import pretty.pprust;

import middle.ty.pat_ty;

import util.common;
Expand Down Expand Up @@ -5397,7 +5394,7 @@ fn trans_log(int lvl, @block_ctxt cx, @ast.expr e) -> result {
fn trans_check_expr(@block_ctxt cx, @ast.expr e) -> result {
auto cond_res = trans_expr(cx, e);

auto expr_str = pretty.pprust.expr_to_str(e);
auto expr_str = util.common.expr_to_str(e);
auto fail_cx = new_sub_block_ctxt(cx, "fail");
auto fail_res = trans_fail(fail_cx, some[common.span](e.span), expr_str);

Expand Down
2 changes: 1 addition & 1 deletion src/comp/middle/ty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,7 @@ fn replace_expr_type(@ast.expr expr, tup(vec[t], t) new_tyt) -> @ast.expr {
}
case (_) {
log_err "unhandled expr type in replace_expr_type(): " +
pretty.pprust.expr_to_str(expr);
util.common.expr_to_str(expr);
fail;
}
}
Expand Down
6 changes: 2 additions & 4 deletions src/comp/middle/typeck.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ import std.option.none;
import std.option.some;
import std.option.from_maybe;

import pretty.pprust;

import util.typestate_ann.ts_ann;

type ty_table = hashmap[ast.def_id, ty.t];
Expand Down Expand Up @@ -1476,7 +1474,7 @@ mod Pushdown {
case (_) {
fcx.ccx.sess.span_unimpl(e.span,
#fmt("type unification for expression variant: %s",
pretty.pprust.expr_to_str(e)));
util.common.expr_to_str(e)));
fail;
}
}
Expand Down Expand Up @@ -1735,7 +1733,7 @@ fn require_pure_function(@crate_ctxt ccx, &ast.def_id d_id, &span sp) -> () {

fn check_expr(&@fn_ctxt fcx, @ast.expr expr) -> @ast.expr {
//fcx.ccx.sess.span_warn(expr.span, "typechecking expr " +
// pretty.pprust.expr_to_str(expr));
// util.common.expr_to_str(expr));

// A generic function to factor out common logic from call and bind
// expressions.
Expand Down
9 changes: 0 additions & 9 deletions src/comp/pretty/pprust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,6 @@ fn block_to_str(&ast.block blk) -> str {
ret writer.get_str();
}

fn expr_to_str(&@ast.expr e) -> str {
auto writer = io.string_writer();
auto s = @rec(s=pp.mkstate(writer.get_writer(), 78u),
comments=option.none[vec[lexer.cmnt]],
mutable cur_cmnt=0u);
print_expr(s, e);
ret writer.get_str();
}

fn pat_to_str(&@ast.pat p) -> str {
auto writer = io.string_writer();
auto s = @rec(s=pp.mkstate(writer.get_writer(), 78u),
Expand Down
8 changes: 4 additions & 4 deletions src/comp/util/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,22 +122,22 @@ fn plain_ann(middle.ty.ctxt tcx) -> ast.ann {
none[vec[middle.ty.t]], none[@ts_ann]);
}

fn expr_to_str(&ast.expr e) -> str {
fn expr_to_str(&@ast.expr e) -> str {
let str_writer s = string_writer();
auto out_ = mkstate(s.get_writer(), 80u);
auto out = @rec(s=out_,
comments=none[vec[front.lexer.cmnt]],
mutable cur_cmnt=0u);
print_expr(out, @e);
print_expr(out, e);
ret s.get_str();
}

fn log_expr(&ast.expr e) -> () {
log(expr_to_str(e));
log(expr_to_str(@e));
}

fn log_expr_err(&ast.expr e) -> () {
log_err(expr_to_str(e));
log_err(expr_to_str(@e));
}

fn block_to_str(&ast.block b) -> str {
Expand Down