diff options
| author | Graydon Hoare <[email protected]> | 2010-09-20 20:19:22 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-09-20 20:19:22 -0700 |
| commit | c17964c06d24300e5f9073f0b7ab4ffaffd78a89 (patch) | |
| tree | 7996174fc01f36e5434dd57c68b323c7806025bf /src/boot/me/walk.ml | |
| parent | Add issue #163 testcase to str-append testcase. (diff) | |
| download | rust-c17964c06d24300e5f9073f0b7ab4ffaffd78a89.tar.xz rust-c17964c06d24300e5f9073f0b7ab4ffaffd78a89.zip | |
Use name_base in plval base.
Diffstat (limited to 'src/boot/me/walk.ml')
| -rw-r--r-- | src/boot/me/walk.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/me/walk.ml b/src/boot/me/walk.ml index 73bb3dff..eb469dfb 100644 --- a/src/boot/me/walk.ml +++ b/src/boot/me/walk.ml @@ -631,9 +631,9 @@ and walk_plval : unit = let children _ = match p with - Ast.PLVAL_ident _ -> () - | Ast.PLVAL_app (_, tys) -> + | Ast.PLVAL_base (Ast.BASE_app (_, tys)) -> Array.iter (walk_ty v) tys + | Ast.PLVAL_base _ -> () | Ast.PLVAL_ext_name (pexp, _) -> walk_pexp v pexp | Ast.PLVAL_ext_pexp (a, b) -> |