Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename JS<T> to Dom<T>, Root<T> to DomRoot<T>, and other things #18635

Merged
merged 9 commits into from Sep 26, 2017

Commits on Sep 26, 2017

  1. Fix some messages in the tidy script

    It's MutJS<T>, not MutJS<JS<T>>.
    nox committed Sep 26, 2017
  2. Rename JS<T> to Dom<T>

    nox committed Sep 26, 2017
  3. Rename MutJS<T> to MutDom<T>

    nox committed Sep 26, 2017
  4. Rename OnceCellJS<T> to DomOnceCell<T>

    Like DOMRefCell<T>.
    nox committed Sep 26, 2017
  5. Rename DOMRefCell<T> to DomRefCell<T>

    I don't want to do such a gratuitous rename, but with all the other types
    now having "Dom" as part of their name, and especially with "DomOnceCell",
    I feel like the other cell type that we already have should also follow
    the convention. That argument loses weight though when we realise there
    is still DOMString and other things.
    nox committed Sep 26, 2017
  6. Rename Root<T> to DomRoot<T>

    In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>,
    where Root<T> will be able to handle all the things that need to be
    rooted that have a stable traceable address that doesn't move for the
    whole lifetime of the root. Stay tuned.
    nox committed Sep 26, 2017
You can’t perform that action at this time.