本文整理汇总了TypeScript中wed/dloc.DLoc.makeDLoc方法的典型用法代码示例。如果您正苦于以下问题:TypeScript DLoc.makeDLoc方法的具体用法?TypeScript DLoc.makeDLoc怎么用?TypeScript DLoc.makeDLoc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wed/dloc.DLoc
的用法示例。
在下文中一共展示了DLoc.makeDLoc方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: makeAttributeNodeCase
function makeAttributeNodeCase(): { attrLoc: DLoc; loc: DLoc } {
const a = defined($(".quote")[0].getAttributeNode(encodedType));
const b = defined($(".body .p")[1]);
const attrLoc = defined(DLoc.makeDLoc(root, a, 0));
const loc = attrLoc.make(b, 1);
return { attrLoc, loc };
}
示例2: it
it("returns a valid DLoc when the root is a DLocRoot", () => {
const a = defined($(".p")[0]);
const loc = DLoc.makeDLoc(rootObj, a, 0)!;
assert.equal(loc.node, a);
assert.equal(loc.offset, 0);
assert.equal(loc.root, root);
assert.isTrue(loc.isValid());
});
示例3: defined
() => {
$root.append("<div class='__test' foo='bar'></div>");
const t = defined($(".__test")[0].attributes.getNamedItem("foo"));
assert.isTrue(isAttr(t));
const loc = defined(DLoc.makeDLoc(root, t, 0));
t.ownerElement!.removeAttribute("foo");
assert.isFalse(loc.isValid());
});