libsyntax: Long lines.

This commit is contained in:
Luqman Aden 2013-02-17 05:24:57 -05:00
parent de57bacf43
commit baeac2f9ac
2 changed files with 12 additions and 6 deletions

View File

@ -93,9 +93,12 @@ pub trait ext_ctxt_ast_builder {
ty_params: ~[ast::ty_param]) -> @ast::item;
fn item_struct(&self, name: ident, span: span,
struct_def: ast::struct_def) -> @ast::item;
fn struct_expr(&self, path: @ast::path, fields: ~[ast::field]) -> @ast::expr;
fn variant(&self, name: ident, span: span, +tys: ~[@ast::Ty]) -> ast::variant;
fn item_mod(&self, name: ident, span: span, +items: ~[@ast::item]) -> @ast::item;
fn struct_expr(&self, path: @ast::path,
fields: ~[ast::field]) -> @ast::expr;
fn variant(&self, name: ident, span: span,
+tys: ~[@ast::Ty]) -> ast::variant;
fn item_mod(&self, name: ident, span: span,
+items: ~[@ast::item]) -> @ast::item;
fn ty_path_ast_builder(&self, path: @ast::path) -> @ast::Ty;
fn item_ty_poly(&self, name: ident,
span: span,
@ -282,7 +285,8 @@ pub impl ext_ctxt_ast_builder for ext_ctxt {
self.item(name, span, ast::item_struct(@struct_def, ty_params))
}
fn struct_expr(&self, path: @ast::path, fields: ~[ast::field]) -> @ast::expr {
fn struct_expr(&self, path: @ast::path,
fields: ~[ast::field]) -> @ast::expr {
@ast::expr {
id: self.next_id(),
callee_id: self.next_id(),

View File

@ -33,7 +33,8 @@ pub trait gen_send {
pub trait to_type_decls {
fn to_type_decls(&self, cx: ext_ctxt) -> ~[@ast::item];
fn to_endpoint_decls(&self, cx: ext_ctxt, dir: direction) -> ~[@ast::item];
fn to_endpoint_decls(&self, cx: ext_ctxt,
dir: direction) -> ~[@ast::item];
}
pub trait gen_init {
@ -253,7 +254,8 @@ pub impl to_type_decls for state {
]
}
fn to_endpoint_decls(&self, cx: ext_ctxt, dir: direction) -> ~[@ast::item] {
fn to_endpoint_decls(&self, cx: ext_ctxt,
dir: direction) -> ~[@ast::item] {
debug!("pipec: to_endpoint_decls");
let dir = match dir {
send => (*self).dir,