You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
386 B
12 lines
386 B
"use strict";
|
|
const SymbolTree = require("symbol-tree");
|
|
|
|
exports.cloningSteps = Symbol("cloning steps");
|
|
|
|
// TODO: the many underscore-prefixed hooks should move here
|
|
// E.g. _attrModified (which maybe should be split into its per-spec variants)
|
|
|
|
/**
|
|
* This SymbolTree is used to build the tree for all Node in a document
|
|
*/
|
|
exports.domSymbolTree = new SymbolTree("DOM SymbolTree");
|
|
|