本文整理匯總了TypeScript中@jonggrang/parsing.attempt函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript attempt函數的具體用法?TypeScript attempt怎麽用?TypeScript attempt使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了attempt函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
export const uri: PS.Parser<URI> = PS.co(function* () {
const us: string = yield PS.attempt(uscheme);
const [ua, up]: [Maybe<URIAuth>, string] = yield hierPart;
const uq: string = yield PS.option('', PS.char('?').chain(() => uquery));
const uf: string = yield PS.option('', PS.char('#').chain(() => ufragment));
return PS.pure(mkURI(us, ua, up, uq, uf));
});
示例2: digits
const time: PS.Parser<[number, number, number]> = PS.co(function* () {
let h = yield digits(2, 2);
yield PS.char(':');
let m = yield digits(2, 2);
// the seconds fields is optional
let s = yield PS.option(0, PS.attempt(PS.char(':').chain(() => digits(2, 2))));
if (h > 23 || m > 59 || s > 59) {
return PS.fail('hour, minute and seconds must be in valid range');
}
return PS.pure([h, m, s]);
});
示例3: notMatching
function notMatching(p: PS.Parser<any>): PS.Parser<void> {
return PS.attempt(p).chain(x => PS.fail('unexpected')).alt(PS.pure(void 0));
}
示例4: notFollowedBy
function notFollowedBy(p: PS.Parser<any>): PS.Parser<void> {
return PS.attempt(
PS.attempt(p).chain(a => PS.fail(Object.prototype.toString.call(a)))
.alt(PS.pure(void 0))
);
}