-
-
Notifications
You must be signed in to change notification settings - Fork 477
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ecmascript): remove
HasProto
which is not part of the spec
- Loading branch information
Showing
3 changed files
with
8 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
//! Methods defined in the [ECMAScript Language Specification](https://tc39.es/ecma262). | ||
mod bound_names; | ||
mod has_proto; | ||
mod is_simple_parameter_list; | ||
mod private_bound_identifiers; | ||
mod prop_name; | ||
|
||
pub use self::{ | ||
bound_names::BoundNames, has_proto::HasProto, is_simple_parameter_list::IsSimpleParameterList, | ||
bound_names::BoundNames, is_simple_parameter_list::IsSimpleParameterList, | ||
private_bound_identifiers::PrivateBoundIdentifiers, prop_name::PropName, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters