rename map -> oldmap and mark it as deprecated

LinearMap is quite a bit faster, and is fully owned/sendable without
requiring copies. The older std::map also doesn't use explicit self and
relies on mutable fields.
This commit is contained in:
Daniel Micay 2013-02-01 02:13:36 -05:00
parent df31373406
commit 319eeb1c79
96 changed files with 230 additions and 231 deletions

View file

@ -26,7 +26,7 @@ use core::option;
use core::str;
use core::uint;
use core::vec;
use std::map::HashMap;
use std::oldmap::HashMap;
/* This is an Earley-like parser, without support for in-grammar nonterminals,
only by calling out to the main rust parser for named nonterminals (which it