rust/src/test/run-pass-fulldeps/qquote.rs

89 lines
2.3 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2012-02-01 14:41:01 -06:00
// xfail-pretty
// xfail-test
2012-02-01 14:41:01 -06:00
extern mod extra;
extern mod syntax;
2012-02-01 14:41:01 -06:00
use std::io::*;
2012-02-01 14:41:01 -06:00
2012-09-05 14:32:05 -05:00
use syntax::diagnostic;
use syntax::ast;
use syntax::codemap;
use syntax::codemap::span;
2012-09-05 14:32:05 -05:00
use syntax::parse;
use syntax::print::*;
2012-02-01 14:41:01 -06:00
trait fake_ext_ctxt {
fn cfg() -> ast::CrateConfig;
fn parse_sess() -> parse::parse_sess;
fn call_site() -> span;
fn ident_of(st: &str) -> ast::ident;
2012-02-01 14:41:01 -06:00
}
2012-07-18 18:18:02 -05:00
type fake_session = parse::parse_sess;
2012-02-01 14:41:01 -06:00
impl fake_ext_ctxt for fake_session {
fn cfg() -> ast::CrateConfig { ~[] }
2012-07-18 18:18:02 -05:00
fn parse_sess() -> parse::parse_sess { self }
fn call_site() -> span {
codemap::span {
lo: codemap::BytePos(0),
hi: codemap::BytePos(0),
expn_info: None
}
}
fn ident_of(st: &str) -> ast::ident {
self.interner.intern(st)
}
2012-02-01 14:41:01 -06:00
}
fn mk_ctxt() -> fake_ext_ctxt {
2012-08-20 14:23:37 -05:00
parse::new_parse_sess(None) as fake_ext_ctxt
2012-02-01 14:41:01 -06:00
}
fn main() {
let cx = mk_ctxt();
2012-02-01 14:41:01 -06:00
let abc = quote_expr!(cx, 23);
2012-07-18 18:18:02 -05:00
check_pp(ext_cx, abc, pprust::print_expr, ~"23");
2012-02-01 14:41:01 -06:00
let ty = quote_ty!(cx, int);
2012-07-18 18:18:02 -05:00
check_pp(ext_cx, ty, pprust::print_type, ~"int");
2012-02-01 23:06:36 -06:00
let item = quote_item!(cx, static x : int = 10;).get();
check_pp(ext_cx, item, pprust::print_item, ~"static x: int = 10;");
2012-02-01 14:41:01 -06:00
let stmt = quote_stmt!(cx, let x = 20;);
2012-07-18 18:18:02 -05:00
check_pp(ext_cx, *stmt, pprust::print_stmt, ~"let x = 20;");
2012-02-01 14:41:01 -06:00
let pat = quote_pat!(cx, Some(_));
check_pp(ext_cx, pat, pprust::print_pat, ~"Some(_)");
2012-02-01 14:41:01 -06:00
}
2012-07-18 18:18:02 -05:00
fn check_pp<T>(cx: fake_ext_ctxt,
expr: T, f: |pprust::ps, T|, expect: ~str) {
let s = do io::with_str_writer |wr| {
let pp = pprust::rust_printer(wr, cx.parse_sess().interner);
f(pp, expr);
pp::eof(pp.s);
};
stdout().write_line(s);
if expect != ~"" {
error!("expect: '%s', got: '%s'", expect, s);
assert_eq!(s, expect);
}
2012-02-01 14:41:01 -06:00
}