本文整理汇总了TypeScript中parsimmon.string函数的典型用法代码示例。如果您正苦于以下问题:TypeScript string函数的具体用法?TypeScript string怎么用?TypeScript string使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了string函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: lazy
const anyBlock: Parser<string> = lazy(() =>
seq(
string('{'), // Let's not eat whitespace around the braces.
alt(
anyBlock,
regex(/[^{}]+/)
).many().map(ss => ss.join('')),
string('}')
).map(ss => ss.join(''))
示例2: function
Parameter: function(r) {
return parsimmon
.alt(
parsimmon.regexp(/[a-zA-Z0-9_.*-]+/),
r.Expression.wrap(
parsimmon.string("{").skip(parsimmon.optWhitespace),
parsimmon.string("}")
)
)
.atLeast(1)
.map(x => ["PARAM", x.length > 1 ? ["||"].concat(x) : x[0]])
.skip(parsimmon.optWhitespace)
.desc("parameter");
},
示例3: nodeMap
const param = P.lazy(() => nodeMap(
S.Param,
P.string('{param')
.then(spaced(identifierName)),
P.alt(
spaced(attribute.many()).skip(rbrace).then(bodyFor('param')),
spaced(colon).then(expression(closingBrace)))
));
示例4: token
let ts = (s: string) => token(P.string(s));
示例5: lexemeS
function lexemeS(s: string): Parser<string> { return lexeme(string(s)); }
示例6: seq
interface FunctionDeclaration {
functionName: string;
functionArguments: FunctionArgument[];
functionReturn: TypeSignature;
}
const exportFunctionDeclaration: Parser<FunctionDeclaration> =
seq(
lexemeS('export')
.then(lexemeS('function'))
.then(identifier.desc('function name')),
lparen
.then(sepBy(functionArgument, lexemeS(',')))
.skip(rparen),
colon
.then(typeSignature)
.skip(string(';')) // Let's not eat whitespace here.
).map(([functionName, functionArguments, functionReturn]: [string, FunctionArgument[], TypeSignature]) => ({
functionName,
functionArguments,
functionReturn
}));
assertParse(
exportFunctionDeclaration,
'export function remove(menuItemId: string, callback?: () => void): void;',
{
functionName: 'remove',
functionArguments: [
{
argumentName: 'menuItemId',
argumentType: 'string'