2012-12-03 16:48:01 -08:00
|
|
|
// 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-11-28 16:20:41 -08:00
|
|
|
//! The main parser interface
|
|
|
|
|
2013-01-30 09:56:33 -08:00
|
|
|
|
2012-12-23 17:41:37 -05:00
|
|
|
use ast;
|
2014-01-15 10:58:29 -08:00
|
|
|
use codemap::{Span, CodeMap, FileMap};
|
2014-02-28 11:37:04 -08:00
|
|
|
use diagnostic::{SpanHandler, mk_span_handler, default_handler};
|
2014-01-09 15:05:33 +02:00
|
|
|
use parse::attr::ParserAttr;
|
2012-12-23 17:41:37 -05:00
|
|
|
use parse::parser::Parser;
|
|
|
|
|
2013-12-27 11:51:18 -08:00
|
|
|
use std::cell::RefCell;
|
2013-11-10 22:46:32 -08:00
|
|
|
use std::io::File;
|
2014-03-16 20:56:24 +02:00
|
|
|
use std::rc::Rc;
|
2013-10-13 18:48:47 -07:00
|
|
|
use std::str;
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-01-08 19:37:25 -08:00
|
|
|
pub mod lexer;
|
|
|
|
pub mod parser;
|
|
|
|
pub mod token;
|
|
|
|
pub mod comments;
|
|
|
|
pub mod attr;
|
2012-11-18 17:56:50 -08:00
|
|
|
|
|
|
|
/// Common routines shared by parser mods
|
2013-01-08 19:37:25 -08:00
|
|
|
pub mod common;
|
2012-11-18 17:56:50 -08:00
|
|
|
|
|
|
|
/// Routines the parser uses to classify AST nodes
|
2013-01-08 19:37:25 -08:00
|
|
|
pub mod classify;
|
2012-11-18 17:56:50 -08:00
|
|
|
|
|
|
|
/// Reporting obsolete syntax
|
2013-01-08 19:37:25 -08:00
|
|
|
pub mod obsolete;
|
2012-11-28 16:20:41 -08:00
|
|
|
|
2013-03-08 10:19:19 -08:00
|
|
|
// info about a parsing session.
|
2013-02-21 00:16:31 -08:00
|
|
|
pub struct ParseSess {
|
2014-03-27 15:39:48 -07:00
|
|
|
pub span_diagnostic: SpanHandler, // better be the same as the one in the reader!
|
2013-07-04 19:51:11 +02:00
|
|
|
/// Used to determine and report recursive mod inclusions
|
2014-03-16 20:56:24 +02:00
|
|
|
included_mod_stack: RefCell<Vec<Path>>,
|
2013-02-21 00:16:31 -08:00
|
|
|
}
|
2012-11-28 16:20:41 -08:00
|
|
|
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn new_parse_sess() -> ParseSess {
|
|
|
|
ParseSess {
|
2014-03-16 20:56:24 +02:00
|
|
|
span_diagnostic: mk_span_handler(default_handler(), CodeMap::new()),
|
2014-02-28 13:09:09 -08:00
|
|
|
included_mod_stack: RefCell::new(Vec::new()),
|
2013-02-21 00:16:31 -08:00
|
|
|
}
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2014-03-16 20:56:24 +02:00
|
|
|
pub fn new_parse_sess_special_handler(sh: SpanHandler) -> ParseSess {
|
2014-03-09 16:54:34 +02:00
|
|
|
ParseSess {
|
2013-02-21 00:16:31 -08:00
|
|
|
span_diagnostic: sh,
|
2014-02-28 13:09:09 -08:00
|
|
|
included_mod_stack: RefCell::new(Vec::new()),
|
2013-02-21 00:16:31 -08:00
|
|
|
}
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2013-02-11 13:36:24 -08:00
|
|
|
// a bunch of utility functions of the form parse_<thing>_from_<source>
|
|
|
|
// where <thing> includes crate, expr, item, stmt, tts, and one that
|
|
|
|
// uses a HOF to parse anything, and <source> includes file and
|
|
|
|
// source_str.
|
|
|
|
|
2013-02-26 20:18:01 -08:00
|
|
|
pub fn parse_crate_from_file(
|
|
|
|
input: &Path,
|
2013-07-19 07:38:55 +02:00
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess
|
2013-09-27 19:46:09 -07:00
|
|
|
) -> ast::Crate {
|
2014-02-06 02:16:44 +09:00
|
|
|
new_parser_from_file(sess, cfg, input).parse_crate_mod()
|
2013-02-11 13:36:24 -08:00
|
|
|
// why is there no p.abort_if_errors here?
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2013-12-19 12:23:39 -08:00
|
|
|
pub fn parse_crate_attrs_from_file(
|
|
|
|
input: &Path,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess
|
2014-02-28 13:09:09 -08:00
|
|
|
) -> Vec<ast::Attribute> {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut parser = new_parser_from_file(sess, cfg, input);
|
2013-12-19 12:23:39 -08:00
|
|
|
let (inner, _) = parser.parse_inner_attrs_and_next();
|
2014-03-09 16:54:34 +02:00
|
|
|
inner
|
2013-12-19 12:23:39 -08:00
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_crate_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-01-15 16:26:20 -08:00
|
|
|
-> ast::Crate {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(sess,
|
2014-02-06 02:16:44 +09:00
|
|
|
cfg,
|
2013-12-30 14:04:00 -08:00
|
|
|
name,
|
|
|
|
source);
|
2013-04-23 10:57:41 -07:00
|
|
|
maybe_aborted(p.parse_crate_mod(),p)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_crate_attrs_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-02-28 13:09:09 -08:00
|
|
|
-> Vec<ast::Attribute> {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(sess,
|
2014-02-06 02:16:44 +09:00
|
|
|
cfg,
|
2013-12-30 14:04:00 -08:00
|
|
|
name,
|
|
|
|
source);
|
2013-12-19 12:23:39 -08:00
|
|
|
let (inner, _) = maybe_aborted(p.parse_inner_attrs_and_next(),p);
|
2014-03-09 16:54:34 +02:00
|
|
|
inner
|
2013-12-19 12:23:39 -08:00
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_expr_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-01-15 16:26:20 -08:00
|
|
|
-> @ast::Expr {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(sess, cfg, name, source);
|
2013-02-26 10:15:29 -08:00
|
|
|
maybe_aborted(p.parse_expr(), p)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_item_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-01-15 16:26:20 -08:00
|
|
|
-> Option<@ast::Item> {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(sess, cfg, name, source);
|
2014-01-21 23:09:53 -08:00
|
|
|
let attrs = p.parse_outer_attributes();
|
2013-02-26 10:15:29 -08:00
|
|
|
maybe_aborted(p.parse_item(attrs),p)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_meta_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-01-15 16:26:20 -08:00
|
|
|
-> @ast::MetaItem {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(sess, cfg, name, source);
|
2013-01-19 16:52:06 +01:00
|
|
|
maybe_aborted(p.parse_meta_item(),p)
|
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_stmt_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-02-28 13:09:09 -08:00
|
|
|
attrs: Vec<ast::Attribute> ,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-01-15 16:26:20 -08:00
|
|
|
-> @ast::Stmt {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(
|
2013-02-26 20:18:01 -08:00
|
|
|
sess,
|
|
|
|
cfg,
|
2013-06-13 03:02:55 +10:00
|
|
|
name,
|
2013-02-26 20:18:01 -08:00
|
|
|
source
|
|
|
|
);
|
2013-02-26 10:15:29 -08:00
|
|
|
maybe_aborted(p.parse_stmt(attrs),p)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2014-01-15 16:42:51 -08:00
|
|
|
pub fn parse_tts_from_source_str(name: ~str,
|
2014-01-15 16:26:20 -08:00
|
|
|
source: ~str,
|
|
|
|
cfg: ast::CrateConfig,
|
2014-03-09 16:54:34 +02:00
|
|
|
sess: &ParseSess)
|
2014-02-28 13:09:09 -08:00
|
|
|
-> Vec<ast::TokenTree> {
|
2013-12-30 14:04:00 -08:00
|
|
|
let mut p = new_parser_from_source_str(
|
2013-02-26 20:18:01 -08:00
|
|
|
sess,
|
|
|
|
cfg,
|
2013-06-13 03:02:55 +10:00
|
|
|
name,
|
2013-02-26 20:18:01 -08:00
|
|
|
source
|
|
|
|
);
|
2013-12-30 14:40:31 -08:00
|
|
|
p.quote_depth += 1u;
|
2013-04-23 10:57:41 -07:00
|
|
|
// right now this is re-creating the token trees from ... token trees.
|
2013-02-26 10:15:29 -08:00
|
|
|
maybe_aborted(p.parse_all_token_trees(),p)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2013-04-23 10:57:41 -07:00
|
|
|
// Create a new parser from a source string
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn new_parser_from_source_str<'a>(sess: &'a ParseSess,
|
2014-03-16 20:56:24 +02:00
|
|
|
cfg: ast::CrateConfig,
|
|
|
|
name: ~str,
|
|
|
|
source: ~str)
|
|
|
|
-> Parser<'a> {
|
|
|
|
filemap_to_parser(sess, string_to_filemap(sess, source, name), cfg)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
/// Create a new parser, handling errors as appropriate
|
2012-11-28 16:20:41 -08:00
|
|
|
/// if the file doesn't exist
|
2014-03-16 20:56:24 +02:00
|
|
|
pub fn new_parser_from_file<'a>(sess: &'a ParseSess,
|
|
|
|
cfg: ast::CrateConfig,
|
|
|
|
path: &Path) -> Parser<'a> {
|
|
|
|
filemap_to_parser(sess, file_to_filemap(sess, path, None), cfg)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2013-04-23 10:57:41 -07:00
|
|
|
/// Given a session, a crate config, a path, and a span, add
|
|
|
|
/// the file at the given path to the codemap, and return a parser.
|
|
|
|
/// On an error, use the given span as the source of the problem.
|
2014-03-16 20:56:24 +02:00
|
|
|
pub fn new_sub_parser_from_file<'a>(sess: &'a ParseSess,
|
|
|
|
cfg: ast::CrateConfig,
|
|
|
|
path: &Path,
|
|
|
|
sp: Span) -> Parser<'a> {
|
|
|
|
filemap_to_parser(sess, file_to_filemap(sess, path, Some(sp)), cfg)
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Given a filemap and config, return a parser
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn filemap_to_parser<'a>(sess: &'a ParseSess,
|
2014-03-16 20:56:24 +02:00
|
|
|
filemap: Rc<FileMap>,
|
2014-03-09 16:54:34 +02:00
|
|
|
cfg: ast::CrateConfig) -> Parser<'a> {
|
2014-03-16 20:56:24 +02:00
|
|
|
tts_to_parser(sess, filemap_to_tts(sess, filemap), cfg)
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// must preserve old name for now, because quote! from the *existing*
|
|
|
|
// compiler expands into it
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn new_parser_from_tts<'a>(sess: &'a ParseSess,
|
|
|
|
cfg: ast::CrateConfig,
|
|
|
|
tts: Vec<ast::TokenTree>) -> Parser<'a> {
|
2014-03-16 20:56:24 +02:00
|
|
|
tts_to_parser(sess, tts, cfg)
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// base abstractions
|
|
|
|
|
|
|
|
/// Given a session and a path and an optional span (for error reporting),
|
|
|
|
/// add the path to the session's codemap and return the new filemap.
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn file_to_filemap(sess: &ParseSess, path: &Path, spanopt: Option<Span>)
|
2014-03-16 20:56:24 +02:00
|
|
|
-> Rc<FileMap> {
|
2013-10-13 18:48:47 -07:00
|
|
|
let err = |msg: &str| {
|
|
|
|
match spanopt {
|
|
|
|
Some(sp) => sess.span_diagnostic.span_fatal(sp, msg),
|
|
|
|
None => sess.span_diagnostic.handler().fatal(msg),
|
|
|
|
}
|
|
|
|
};
|
2014-01-29 17:39:21 -08:00
|
|
|
let bytes = match File::open(path).read_to_end() {
|
2013-10-25 17:04:37 -07:00
|
|
|
Ok(bytes) => bytes,
|
|
|
|
Err(e) => {
|
2014-01-29 17:39:21 -08:00
|
|
|
err(format!("couldn't read {}: {}", path.display(), e));
|
2013-10-25 17:04:37 -07:00
|
|
|
unreachable!()
|
2013-10-13 18:48:47 -07:00
|
|
|
}
|
2013-10-25 17:04:37 -07:00
|
|
|
};
|
2014-03-26 09:24:16 -07:00
|
|
|
match str::from_utf8(bytes.as_slice()) {
|
2013-10-13 18:48:47 -07:00
|
|
|
Some(s) => {
|
2014-03-26 09:24:16 -07:00
|
|
|
return string_to_filemap(sess, s.to_owned(),
|
|
|
|
path.as_str().unwrap().to_str())
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
2014-01-15 16:42:51 -08:00
|
|
|
None => err(format!("{} is not UTF-8 encoded", path.display())),
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
2013-10-13 18:48:47 -07:00
|
|
|
unreachable!()
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
|
|
|
|
2013-04-23 10:57:41 -07:00
|
|
|
// given a session and a string, add the string to
|
|
|
|
// the session's codemap and return the new filemap
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn string_to_filemap(sess: &ParseSess, source: ~str, path: ~str)
|
2014-03-16 20:56:24 +02:00
|
|
|
-> Rc<FileMap> {
|
|
|
|
sess.span_diagnostic.cm.new_filemap(path, source)
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// given a filemap, produce a sequence of token-trees
|
2014-03-16 20:56:24 +02:00
|
|
|
pub fn filemap_to_tts(sess: &ParseSess, filemap: Rc<FileMap>)
|
2014-02-28 13:09:09 -08:00
|
|
|
-> Vec<ast::TokenTree> {
|
2013-04-23 10:57:41 -07:00
|
|
|
// it appears to me that the cfg doesn't matter here... indeed,
|
|
|
|
// parsing tt's probably shouldn't require a parser at all.
|
2014-02-28 13:09:09 -08:00
|
|
|
let cfg = Vec::new();
|
2014-03-16 20:56:24 +02:00
|
|
|
let srdr = lexer::new_string_reader(&sess.span_diagnostic, filemap);
|
2014-02-07 00:38:33 +02:00
|
|
|
let mut p1 = Parser(sess, cfg, ~srdr);
|
2013-04-23 10:57:41 -07:00
|
|
|
p1.parse_all_token_trees()
|
|
|
|
}
|
|
|
|
|
|
|
|
// given tts and cfg, produce a parser
|
2014-03-09 16:54:34 +02:00
|
|
|
pub fn tts_to_parser<'a>(sess: &'a ParseSess,
|
|
|
|
tts: Vec<ast::TokenTree>,
|
|
|
|
cfg: ast::CrateConfig) -> Parser<'a> {
|
2014-03-16 20:56:24 +02:00
|
|
|
let trdr = lexer::new_tt_reader(&sess.span_diagnostic, None, tts);
|
2014-02-07 00:38:33 +02:00
|
|
|
Parser(sess, cfg, ~trdr)
|
2012-11-28 16:20:41 -08:00
|
|
|
}
|
2013-01-30 09:56:33 -08:00
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// abort if necessary
|
2013-12-30 14:04:00 -08:00
|
|
|
pub fn maybe_aborted<T>(result: T, mut p: Parser) -> T {
|
2013-02-26 10:15:29 -08:00
|
|
|
p.abort_if_errors();
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-04 13:15:17 -08:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
2014-02-21 14:18:39 -08:00
|
|
|
use serialize::{json, Encodable};
|
2013-11-10 22:46:32 -08:00
|
|
|
use std::io;
|
2014-01-15 13:25:09 -08:00
|
|
|
use std::io::MemWriter;
|
2013-10-13 18:48:47 -07:00
|
|
|
use std::str;
|
2013-08-31 18:13:04 +02:00
|
|
|
use codemap::{Span, BytePos, Spanned};
|
2014-03-20 01:52:37 +11:00
|
|
|
use owned_slice::OwnedSlice;
|
2013-03-06 12:38:13 -08:00
|
|
|
use ast;
|
2013-04-23 10:57:41 -07:00
|
|
|
use abi;
|
|
|
|
use parse::parser::Parser;
|
2013-06-09 02:21:11 +10:00
|
|
|
use parse::token::{str_to_ident};
|
2013-09-24 12:31:24 -07:00
|
|
|
use util::parser_testing::{string_to_tts, string_to_parser};
|
2013-05-16 17:42:08 -07:00
|
|
|
use util::parser_testing::{string_to_expr, string_to_item};
|
2013-08-30 15:06:11 -07:00
|
|
|
use util::parser_testing::string_to_stmt;
|
2013-04-23 10:57:41 -07:00
|
|
|
|
2014-03-18 10:58:26 -07:00
|
|
|
fn to_json_str<'a, E: Encodable<json::Encoder<'a>, io::IoError>>(val: &E) -> ~str {
|
|
|
|
let mut writer = MemWriter::new();
|
|
|
|
let mut encoder = json::Encoder::new(&mut writer as &mut io::Writer);
|
|
|
|
let _ = val.encode(&mut encoder);
|
2014-03-26 09:24:16 -07:00
|
|
|
str::from_utf8(writer.unwrap().as_slice()).unwrap().to_owned()
|
2014-03-18 10:58:26 -07:00
|
|
|
}
|
|
|
|
|
2013-04-23 10:57:41 -07:00
|
|
|
// produce a codemap::span
|
2013-11-21 01:32:29 +09:00
|
|
|
fn sp(a: u32, b: u32) -> Span {
|
2013-08-31 18:13:04 +02:00
|
|
|
Span{lo:BytePos(a),hi:BytePos(b),expn_info:None}
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
2013-08-07 09:47:28 -07:00
|
|
|
#[test] fn path_exprs_1() {
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(string_to_expr(~"a") ==
|
2013-09-02 03:45:37 +02:00
|
|
|
@ast::Expr{
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::ExprPath(ast::Path {
|
2013-08-07 09:47:28 -07:00
|
|
|
span: sp(0, 1),
|
|
|
|
global: false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier: str_to_ident("a"),
|
2014-03-07 03:10:52 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-08-07 09:47:28 -07:00
|
|
|
}),
|
|
|
|
span: sp(0, 1)
|
|
|
|
})
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn path_exprs_2 () {
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(string_to_expr(~"::a::b") ==
|
2013-09-02 03:45:37 +02:00
|
|
|
@ast::Expr {
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::ExprPath(ast::Path {
|
2013-08-07 09:47:28 -07:00
|
|
|
span: sp(0, 6),
|
|
|
|
global: true,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier: str_to_ident("a"),
|
2014-03-07 03:10:52 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
},
|
|
|
|
ast::PathSegment {
|
|
|
|
identifier: str_to_ident("b"),
|
2014-03-07 03:10:52 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
)
|
2013-08-08 11:38:10 -07:00
|
|
|
}),
|
|
|
|
span: sp(0, 6)
|
2013-08-07 09:47:28 -07:00
|
|
|
})
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
2013-07-25 01:03:53 -07:00
|
|
|
#[should_fail]
|
2013-04-23 10:57:41 -07:00
|
|
|
#[test] fn bad_path_expr_1() {
|
2014-01-30 18:46:19 -08:00
|
|
|
string_to_expr(~"::abc::def::return");
|
2013-07-25 01:03:53 -07:00
|
|
|
}
|
2013-04-23 10:57:41 -07:00
|
|
|
|
2013-09-24 15:57:58 -07:00
|
|
|
// check the token-tree-ization of macros
|
|
|
|
#[test] fn string_to_tts_macro () {
|
2014-01-30 18:46:19 -08:00
|
|
|
let tts = string_to_tts(~"macro_rules! zip (($a)=>($a))");
|
2014-02-28 12:54:01 -08:00
|
|
|
let tts: &[ast::TokenTree] = tts.as_slice();
|
2013-09-24 15:57:58 -07:00
|
|
|
match tts {
|
2014-01-09 15:05:33 +02:00
|
|
|
[ast::TTTok(_,_),
|
|
|
|
ast::TTTok(_,token::NOT),
|
|
|
|
ast::TTTok(_,_),
|
2014-03-27 16:40:35 +02:00
|
|
|
ast::TTDelim(ref delim_elts)] => {
|
2014-02-28 12:54:01 -08:00
|
|
|
let delim_elts: &[ast::TokenTree] = delim_elts.as_slice();
|
2014-02-13 09:46:46 -08:00
|
|
|
match delim_elts {
|
2014-01-09 15:05:33 +02:00
|
|
|
[ast::TTTok(_,token::LPAREN),
|
2014-03-27 16:40:35 +02:00
|
|
|
ast::TTDelim(ref first_set),
|
2014-02-13 09:46:46 -08:00
|
|
|
ast::TTTok(_,token::FAT_ARROW),
|
2014-03-27 16:40:35 +02:00
|
|
|
ast::TTDelim(ref second_set),
|
2014-02-13 09:46:46 -08:00
|
|
|
ast::TTTok(_,token::RPAREN)] => {
|
2014-02-28 12:54:01 -08:00
|
|
|
let first_set: &[ast::TokenTree] =
|
|
|
|
first_set.as_slice();
|
2014-02-13 09:46:46 -08:00
|
|
|
match first_set {
|
|
|
|
[ast::TTTok(_,token::LPAREN),
|
|
|
|
ast::TTTok(_,token::DOLLAR),
|
|
|
|
ast::TTTok(_,_),
|
|
|
|
ast::TTTok(_,token::RPAREN)] => {
|
|
|
|
let second_set: &[ast::TokenTree] =
|
2014-02-28 12:54:01 -08:00
|
|
|
second_set.as_slice();
|
2014-02-13 09:46:46 -08:00
|
|
|
match second_set {
|
|
|
|
[ast::TTTok(_,token::LPAREN),
|
|
|
|
ast::TTTok(_,token::DOLLAR),
|
|
|
|
ast::TTTok(_,_),
|
|
|
|
ast::TTTok(_,token::RPAREN)] => {
|
|
|
|
assert_eq!("correct","correct")
|
|
|
|
}
|
|
|
|
_ => assert_eq!("wrong 4","correct")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
error!("failing value 3: {:?}",first_set);
|
|
|
|
assert_eq!("wrong 3","correct")
|
|
|
|
}
|
|
|
|
}
|
2013-09-24 15:57:58 -07:00
|
|
|
},
|
|
|
|
_ => {
|
2014-02-13 09:46:46 -08:00
|
|
|
error!("failing value 2: {:?}",delim_elts);
|
|
|
|
assert_eq!("wrong","correct");
|
2013-09-24 15:57:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {
|
2013-10-21 13:08:31 -07:00
|
|
|
error!("failing value: {:?}",tts);
|
2013-09-24 15:57:58 -07:00
|
|
|
assert_eq!("wrong 1","correct");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-23 10:57:41 -07:00
|
|
|
#[test] fn string_to_tts_1 () {
|
2014-01-30 18:46:19 -08:00
|
|
|
let tts = string_to_tts(~"fn a (b : int) { b; }");
|
2014-01-14 01:31:05 +09:00
|
|
|
assert_eq!(to_json_str(&tts),
|
2013-09-16 19:12:54 -04:00
|
|
|
~"[\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
{\
|
|
|
|
\"variant\":\"IDENT\",\
|
|
|
|
\"fields\":[\
|
|
|
|
\"fn\",\
|
|
|
|
false\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
{\
|
|
|
|
\"variant\":\"IDENT\",\
|
|
|
|
\"fields\":[\
|
|
|
|
\"a\",\
|
|
|
|
false\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTDelim\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
[\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
\"LPAREN\"\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
{\
|
|
|
|
\"variant\":\"IDENT\",\
|
|
|
|
\"fields\":[\
|
|
|
|
\"b\",\
|
|
|
|
false\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
\"COLON\"\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
{\
|
|
|
|
\"variant\":\"IDENT\",\
|
|
|
|
\"fields\":[\
|
|
|
|
\"int\",\
|
|
|
|
false\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
\"RPAREN\"\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTDelim\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
[\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
\"LBRACE\"\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
{\
|
|
|
|
\"variant\":\"IDENT\",\
|
|
|
|
\"fields\":[\
|
|
|
|
\"b\",\
|
|
|
|
false\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
\"SEMI\"\
|
|
|
|
]\
|
|
|
|
},\
|
|
|
|
{\
|
2014-01-09 15:05:33 +02:00
|
|
|
\"variant\":\"TTTok\",\
|
2013-09-16 19:12:54 -04:00
|
|
|
\"fields\":[\
|
|
|
|
null,\
|
|
|
|
\"RBRACE\"\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]\
|
|
|
|
]\
|
|
|
|
}\
|
|
|
|
]"
|
2013-09-16 17:12:53 -04:00
|
|
|
);
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn ret_expr() {
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(string_to_expr(~"return d") ==
|
2013-09-02 03:45:37 +02:00
|
|
|
@ast::Expr{
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node:ast::ExprRet(Some(@ast::Expr{
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node:ast::ExprPath(ast::Path{
|
2013-08-07 09:47:28 -07:00
|
|
|
span: sp(7, 8),
|
|
|
|
global: false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier: str_to_ident("d"),
|
2014-03-07 16:50:40 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-08-07 09:47:28 -07:00
|
|
|
}),
|
|
|
|
span:sp(7,8)
|
|
|
|
})),
|
|
|
|
span:sp(0,8)
|
|
|
|
})
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn parse_stmt_1 () {
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(string_to_stmt(~"b;") ==
|
2013-08-31 18:13:04 +02:00
|
|
|
@Spanned{
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::StmtExpr(@ast::Expr {
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::ExprPath(ast::Path {
|
2013-08-07 09:47:28 -07:00
|
|
|
span:sp(0,1),
|
|
|
|
global:false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier: str_to_ident("b"),
|
2014-03-07 16:50:40 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-08-07 09:47:28 -07:00
|
|
|
}),
|
2013-04-23 10:57:41 -07:00
|
|
|
span: sp(0,1)},
|
2013-09-06 22:11:55 -04:00
|
|
|
ast::DUMMY_NODE_ID),
|
2013-04-23 10:57:41 -07:00
|
|
|
span: sp(0,1)})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-23 16:47:47 -07:00
|
|
|
fn parser_done(p: Parser){
|
2013-12-30 15:09:41 -08:00
|
|
|
assert_eq!(p.token.clone(), token::EOF);
|
2013-04-23 16:47:47 -07:00
|
|
|
}
|
|
|
|
|
2013-04-23 10:57:41 -07:00
|
|
|
#[test] fn parse_ident_pat () {
|
2014-03-17 09:55:41 +02:00
|
|
|
let sess = new_parse_sess();
|
|
|
|
let mut parser = string_to_parser(&sess, ~"b");
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(parser.parse_pat() ==
|
2013-09-06 22:11:55 -04:00
|
|
|
@ast::Pat{id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::PatIdent(
|
2013-10-20 08:31:23 -04:00
|
|
|
ast::BindByValue(ast::MutImmutable),
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::Path {
|
|
|
|
span:sp(0,1),
|
|
|
|
global:false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier: str_to_ident("b"),
|
2014-03-07 16:50:40 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-08-07 09:47:28 -07:00
|
|
|
},
|
|
|
|
None /* no idea */),
|
2013-04-23 10:57:41 -07:00
|
|
|
span: sp(0,1)});
|
2013-04-23 16:47:47 -07:00
|
|
|
parser_done(parser);
|
2013-04-23 10:57:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// check the contents of the tt manually:
|
|
|
|
#[test] fn parse_fundecl () {
|
2013-09-06 22:11:55 -04:00
|
|
|
// this test depends on the intern order of "fn" and "int"
|
2014-02-28 01:23:06 -08:00
|
|
|
assert!(string_to_item(~"fn a (b : int) { b; }") ==
|
2013-04-23 10:57:41 -07:00
|
|
|
Some(
|
2014-01-09 15:05:33 +02:00
|
|
|
@ast::Item{ident:str_to_ident("a"),
|
2014-02-28 13:09:09 -08:00
|
|
|
attrs:Vec::new(),
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2014-01-09 15:05:33 +02:00
|
|
|
node: ast::ItemFn(ast::P(ast::FnDecl {
|
2014-02-28 13:09:09 -08:00
|
|
|
inputs: vec!(ast::Arg{
|
2013-12-01 00:00:39 +02:00
|
|
|
ty: ast::P(ast::Ty{id: ast::DUMMY_NODE_ID,
|
2014-01-09 15:05:33 +02:00
|
|
|
node: ast::TyPath(ast::Path{
|
2013-04-23 10:57:41 -07:00
|
|
|
span:sp(10,13),
|
|
|
|
global:false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier:
|
|
|
|
str_to_ident("int"),
|
2014-03-07 16:50:40 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-09-06 22:11:55 -04:00
|
|
|
}, None, ast::DUMMY_NODE_ID),
|
2013-08-07 09:47:28 -07:00
|
|
|
span:sp(10,13)
|
2013-12-01 00:00:39 +02:00
|
|
|
}),
|
2013-09-02 03:45:37 +02:00
|
|
|
pat: @ast::Pat {
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::PatIdent(
|
2013-10-20 08:31:23 -04:00
|
|
|
ast::BindByValue(ast::MutImmutable),
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::Path {
|
|
|
|
span:sp(6,7),
|
|
|
|
global:false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier:
|
|
|
|
str_to_ident("b"),
|
2014-03-07 16:50:40 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-08-07 09:47:28 -07:00
|
|
|
},
|
|
|
|
None // no idea
|
|
|
|
),
|
|
|
|
span: sp(6,7)
|
|
|
|
},
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID
|
2014-02-28 13:09:09 -08:00
|
|
|
}),
|
2013-12-01 00:00:39 +02:00
|
|
|
output: ast::P(ast::Ty{id: ast::DUMMY_NODE_ID,
|
2014-01-09 15:05:33 +02:00
|
|
|
node: ast::TyNil,
|
2013-12-01 00:00:39 +02:00
|
|
|
span:sp(15,15)}), // not sure
|
2014-01-09 15:05:33 +02:00
|
|
|
cf: ast::Return,
|
2013-10-25 01:56:34 -04:00
|
|
|
variadic: false
|
2013-12-01 00:00:39 +02:00
|
|
|
}),
|
2014-04-06 18:04:40 -07:00
|
|
|
ast::NormalFn,
|
2014-04-02 01:19:41 -07:00
|
|
|
abi::Rust,
|
2013-04-23 10:57:41 -07:00
|
|
|
ast::Generics{ // no idea on either of these:
|
2014-03-07 16:50:40 +01:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-20 01:52:37 +11:00
|
|
|
ty_params: OwnedSlice::empty(),
|
2013-04-23 10:57:41 -07:00
|
|
|
},
|
2013-12-01 00:00:39 +02:00
|
|
|
ast::P(ast::Block {
|
2014-02-28 13:09:09 -08:00
|
|
|
view_items: Vec::new(),
|
|
|
|
stmts: vec!(@Spanned{
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::StmtSemi(@ast::Expr{
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-09-02 03:45:37 +02:00
|
|
|
node: ast::ExprPath(
|
2013-07-16 20:08:35 +02:00
|
|
|
ast::Path{
|
|
|
|
span:sp(17,18),
|
|
|
|
global:false,
|
2014-02-28 13:09:09 -08:00
|
|
|
segments: vec!(
|
2013-08-07 09:47:28 -07:00
|
|
|
ast::PathSegment {
|
|
|
|
identifier:
|
|
|
|
str_to_ident(
|
|
|
|
"b"),
|
2013-10-29 06:03:32 -04:00
|
|
|
lifetimes:
|
2014-03-07 16:50:40 +01:00
|
|
|
Vec::new(),
|
2013-08-07 09:47:28 -07:00
|
|
|
types:
|
2014-03-20 01:52:37 +11:00
|
|
|
OwnedSlice::empty()
|
2013-08-07 09:47:28 -07:00
|
|
|
}
|
2014-02-28 13:09:09 -08:00
|
|
|
),
|
2013-08-07 09:47:28 -07:00
|
|
|
}),
|
2013-07-16 20:08:35 +02:00
|
|
|
span: sp(17,18)},
|
2013-09-06 22:11:55 -04:00
|
|
|
ast::DUMMY_NODE_ID),
|
2014-02-28 13:09:09 -08:00
|
|
|
span: sp(17,18)}),
|
2013-07-16 20:08:35 +02:00
|
|
|
expr: None,
|
2013-09-06 22:11:55 -04:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-07-27 10:25:59 +02:00
|
|
|
rules: ast::DefaultBlock, // no idea
|
2013-04-23 10:57:41 -07:00
|
|
|
span: sp(15,21),
|
2013-12-01 00:00:39 +02:00
|
|
|
})),
|
2014-01-09 15:05:33 +02:00
|
|
|
vis: ast::Inherited,
|
2013-04-23 10:57:41 -07:00
|
|
|
span: sp(0,21)}));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[test] fn parse_exprs () {
|
|
|
|
// just make sure that they parse....
|
2014-01-30 18:46:19 -08:00
|
|
|
string_to_expr(~"3 + 4");
|
|
|
|
string_to_expr(~"a::z.froob(b,@(987+3))");
|
2013-02-04 13:15:17 -08:00
|
|
|
}
|
2013-04-30 12:02:56 -07:00
|
|
|
|
|
|
|
#[test] fn attrs_fix_bug () {
|
2014-01-30 18:46:19 -08:00
|
|
|
string_to_item(~"pub fn mk_file_writer(path: &Path, flags: &[FileFlag])
|
2013-04-30 12:02:56 -07:00
|
|
|
-> Result<@Writer, ~str> {
|
|
|
|
#[cfg(windows)]
|
|
|
|
fn wb() -> c_int {
|
|
|
|
(O_WRONLY | libc::consts::os::extra::O_BINARY) as c_int
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
fn wb() -> c_int { O_WRONLY as c_int }
|
|
|
|
|
|
|
|
let mut fflags: c_int = wb();
|
|
|
|
}");
|
|
|
|
}
|
|
|
|
|
2013-02-04 13:15:17 -08:00
|
|
|
}
|