diff options
| author | Graydon Hoare <[email protected]> | 2010-07-12 13:30:46 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-12 13:30:46 -0700 |
| commit | d5ba0c34101af34433a21f4bba0f4dd76aac8a87 (patch) | |
| tree | 5943c603b4aff04055eded28469d9136c07057a2 /src/boot/fe | |
| parent | Revert previous wrong-change on issue #106; was papering over wrongness in th... (diff) | |
| download | rust-d5ba0c34101af34433a21f4bba0f4dd76aac8a87.tar.xz rust-d5ba0c34101af34433a21f4bba0f4dd76aac8a87.zip | |
Wrap long line.
Diffstat (limited to 'src/boot/fe')
| -rw-r--r-- | src/boot/fe/ast.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/boot/fe/ast.ml b/src/boot/fe/ast.ml index f00db117..25048d07 100644 --- a/src/boot/fe/ast.ml +++ b/src/boot/fe/ast.ml @@ -1356,7 +1356,8 @@ let ty_children (ty:ty) : ty array = [| ty' |] | TY_rec fields -> Array.map snd fields | TY_tag ty_tag -> children_of_ty_tag ty_tag - | TY_iso ty_iso -> children_of_ty_tag (ty_iso.iso_group.(ty_iso.iso_index)) + | TY_iso ty_iso -> + children_of_ty_tag (ty_iso.iso_group.(ty_iso.iso_index)) | TY_fn ty_fn -> children_of_ty_fn ty_fn | TY_obj (_, methods) -> Array.concat (List.map children_of_ty_fn (htab_vals methods)) |