2013-05-16 19:41:47 -05:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
use core::option::{Option,None};
|
|
|
|
use ast;
|
2013-05-07 14:34:52 -05:00
|
|
|
use parse::{new_parse_sess};
|
2013-06-04 14:34:25 -05:00
|
|
|
use parse::{ParseSess,string_to_filemap,filemap_to_tts};
|
|
|
|
use parse::{new_parser_from_source_str};
|
|
|
|
use parse::parser::Parser;
|
|
|
|
use parse::token;
|
2013-05-16 19:41:47 -05:00
|
|
|
|
|
|
|
// map a string to tts, using a made-up filename: return both the token_trees
|
|
|
|
// and the ParseSess
|
|
|
|
pub fn string_to_tts_and_sess (source_str : @~str) -> (~[ast::token_tree],@mut ParseSess) {
|
2013-05-07 14:34:52 -05:00
|
|
|
let ps = new_parse_sess(None);
|
2013-05-16 19:41:47 -05:00
|
|
|
(filemap_to_tts(ps,string_to_filemap(ps,source_str,~"bogofile")),ps)
|
|
|
|
}
|
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
pub fn string_to_parser_and_sess(source_str: @~str) -> (Parser,@mut ParseSess) {
|
2013-05-07 14:34:52 -05:00
|
|
|
let ps = new_parse_sess(None);
|
2013-05-16 19:42:08 -05:00
|
|
|
(new_parser_from_source_str(ps,~[],~"bogofile",source_str),ps)
|
|
|
|
}
|
|
|
|
|
2013-05-16 19:41:47 -05:00
|
|
|
// map string to parser (via tts)
|
|
|
|
pub fn string_to_parser(source_str: @~str) -> Parser {
|
2013-05-16 19:42:08 -05:00
|
|
|
let (p,_) = string_to_parser_and_sess(source_str);
|
|
|
|
p
|
2013-05-16 19:41:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn string_to_crate (source_str : @~str) -> @ast::crate {
|
|
|
|
string_to_parser(source_str).parse_crate_mod()
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse a string, return an expr
|
|
|
|
pub fn string_to_expr (source_str : @~str) -> @ast::expr {
|
|
|
|
string_to_parser(source_str).parse_expr()
|
|
|
|
}
|
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
// parse a string, return an item
|
2013-05-16 19:41:47 -05:00
|
|
|
pub fn string_to_item (source_str : @~str) -> Option<@ast::item> {
|
|
|
|
string_to_parser(source_str).parse_item(~[])
|
|
|
|
}
|
|
|
|
|
2013-05-16 19:42:08 -05:00
|
|
|
// parse a string, return an item and the ParseSess
|
|
|
|
pub fn string_to_item_and_sess (source_str : @~str) -> (Option<@ast::item>,@mut ParseSess) {
|
|
|
|
let (p,ps) = string_to_parser_and_sess(source_str);
|
|
|
|
(p.parse_item(~[]),ps)
|
|
|
|
}
|
|
|
|
|
2013-06-04 16:56:33 -05:00
|
|
|
// parse a string, return a stmt
|
|
|
|
pub fn string_to_stmt(source_str : @~str) -> @ast::stmt {
|
2013-05-16 19:41:47 -05:00
|
|
|
string_to_parser(source_str).parse_stmt(~[])
|
|
|
|
}
|
|
|
|
|
2013-06-04 14:34:25 -05:00
|
|
|
// parse a string, return a pat. Uses "irrefutable"... which doesn't
|
|
|
|
// (currently) affect parsing.
|
|
|
|
pub fn string_to_pat(source_str : @~str) -> @ast::pat {
|
|
|
|
string_to_parser(source_str).parse_pat()
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert a vector of strings to a vector of ast::idents
|
|
|
|
pub fn strs_to_idents(ids: ~[&str]) -> ~[ast::ident] {
|
|
|
|
ids.map(|u| token::str_to_ident(*u))
|
|
|
|
}
|