本文整理汇总了TypeScript中wed/dloc.DLoc.mustMakeDLoc方法的典型用法代码示例。如果您正苦于以下问题:TypeScript DLoc.mustMakeDLoc方法的具体用法?TypeScript DLoc.mustMakeDLoc怎么用?TypeScript DLoc.mustMakeDLoc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wed/dloc.DLoc
的用法示例。
在下文中一共展示了DLoc.mustMakeDLoc方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: before
before(() => {
const quoteNode = root.querySelector(".quote")!;
quote = DLoc.mustMakeDLoc(root, quoteNode);
attr = DLoc.mustMakeDLoc(
root,
quoteNode.getAttributeNode(encodedType), 0);
});
示例2: beforeEach
beforeEach(() => {
dataRoot = editor.dataRoot;
caretManager = editor.caretManager;
ps = Array.from(dataRoot.querySelectorAll("body p"));
firstBodyP = ps[0];
firstBodyPLocation = caretManager.mustFromDataLocation(
DLoc.mustMakeDLoc(dataRoot, firstBodyP, 0));
caretManager.setCaret(firstBodyPLocation);
// First 3 text characters in the 5th paragraph (at index 4).
const pFiveStart = DLoc.mustMakeDLoc(dataRoot, ps[4].firstChild, 0);
pFiveFirstThree = new DLocRange(
caretManager.mustFromDataLocation(pFiveStart),
caretManager.mustFromDataLocation(pFiveStart.makeWithOffset(3)));
expect(pFiveFirstThree.mustMakeDOMRange().toString()).to.equal("abc");
pFiveFirstFour = new DLocRange(
caretManager.mustFromDataLocation(pFiveStart),
caretManager.mustFromDataLocation(pFiveStart.makeWithOffset(4)));
expect(pFiveFirstFour.mustMakeDOMRange().toString()).to.equal("abcd");
const pSevenStart = DLoc.mustMakeDLoc(dataRoot, ps[6].firstChild, 0);
pSevenFirstThree = new DLocRange(
caretManager.mustFromDataLocation(pSevenStart),
caretManager.mustFromDataLocation(pSevenStart.makeWithOffset(3)));
expect(pSevenFirstThree.mustMakeDOMRange().toString()).to.equal("abc");
// This is the first "abc" found when doing a TEXT search.
firstABCText = new DLocRange(
caretManager.mustFromDataLocation(ps[3].firstChild!.firstChild!, 0),
caretManager.mustFromDataLocation(ps[3].lastChild!, 1));
});
示例3: it
it("returns false when the two ranges differ in end positions", () => {
const range = new DLocRange(loc, loc);
const range2 = new DLocRange(DLoc.mustMakeDLoc(root, a, 0),
DLoc.mustMakeDLoc(root, a, 1));
assert.isTrue(range.start.equals(range2.start));
assert.isFalse(range.end.equals(range2.end));
assert.isFalse(range.equals(range2));
});
示例4: before
before(() => {
guiRoot = editor.guiRoot;
dataRoot = editor.dataRoot;
caretManager = editor.caretManager;
docScope = editor.caretManager.docDLocRange;
ps = Array.from(editor.dataRoot.querySelectorAll("body p"));
firstBodyP = ps[0];
firstBodyPLocation = caretManager.mustFromDataLocation(
DLoc.mustMakeDLoc(dataRoot, firstBodyP, 0));
// First 3 text characters in the 5th paragraph (at index 4).
const pFiveStart = DLoc.mustMakeDLoc(dataRoot, ps[4].firstChild, 0);
pFiveFirstThree = new DLocRange(
caretManager.mustFromDataLocation(pFiveStart),
caretManager.mustFromDataLocation(pFiveStart.makeWithOffset(3)));
expect(pFiveFirstThree.mustMakeDOMRange().toString()).to.equal("abc");
pFiveFirstFour = new DLocRange(
caretManager.mustFromDataLocation(pFiveStart),
caretManager.mustFromDataLocation(pFiveStart.makeWithOffset(4)));
expect(pFiveFirstFour.mustMakeDOMRange().toString()).to.equal("abcd");
const pSevenStart = DLoc.mustMakeDLoc(dataRoot, ps[6].firstChild, 0);
pSevenFirstThree = new DLocRange(
caretManager.mustFromDataLocation(pSevenStart),
caretManager.mustFromDataLocation(pSevenStart.makeWithOffset(3)));
expect(pSevenFirstThree.mustMakeDOMRange().toString()).to.equal("abc");
// This is the first "abc" found when doing a TEXT search.
firstABCText = new DLocRange(
caretManager.mustFromDataLocation(ps[3].firstChild!.firstChild!, 0),
caretManager.mustFromDataLocation(ps[3].lastChild!, 1));
// This is the first "abcd" found when doing a TEXT search.
firstABCDText = new DLocRange(
caretManager.mustFromDataLocation(ps[3].firstChild!.firstChild!, 0),
caretManager.mustFromDataLocation(ps[3].lastChild!, 2));
const rend = ps[7].getAttributeNode("rend")!;
firstABCAttribute = new DLocRange(
caretManager.mustFromDataLocation(rend, 0),
caretManager.mustFromDataLocation(rend, 3));
firstABCDAttribute = new DLocRange(
caretManager.mustFromDataLocation(rend, 0),
caretManager.mustFromDataLocation(rend, 4));
secondABCAttribute = new DLocRange(
caretManager.mustFromDataLocation(rend, 4),
caretManager.mustFromDataLocation(rend, 7));
});
示例5: it
it("with DLoc", () => {
const tree = genericTree.cloneNode(true) as Document;
const dataRoot = new DLocRoot(tree);
const p = new validator.Validator(grammar, tree, []);
const body = tree.getElementsByTagName("body")[0];
const container = body.parentNode!;
const index = Array.prototype.indexOf.call(container.childNodes, body);
const ret = p.speculativelyValidate(
DLoc.mustMakeDLoc(dataRoot, container, index), body);
assert.isFalse(ret);
});
示例6: it
it("throws on an invalid range", () => {
const search = makeSearch(caretManager.caret!);
const invalid = DLoc.mustMakeDLoc(guiRoot, guiRoot,
guiRoot.childNodes.length);
// We cheat and make the value invalid manually. Otherwise, we'd have to
// modify the gui tree....
(invalid as any).offset++;
expect(invalid.isValid()).to.be.false;
expect(
() =>
(search as any).setScope(
new DLocRange(caretManager.minCaret, invalid)))
.to.throw(Error, "passed an invalid range");
});