feat(ivy): add (event)="handle"
syntax support to compiler (#22921)
PR Close #22921
This commit is contained in:

committed by
Alex Rickabaugh

parent
4290ea4bb9
commit
5266ffe04a
@ -1485,6 +1485,10 @@ export function literal(
|
||||
return new LiteralExpr(value, type, sourceSpan);
|
||||
}
|
||||
|
||||
export function isNull(exp: Expression): boolean {
|
||||
return exp instanceof LiteralExpr && exp.value === null;
|
||||
}
|
||||
|
||||
// The list of JSDoc tags that we currently support. Extend it if needed.
|
||||
export const enum JSDocTagName {
|
||||
Desc = 'desc',
|
||||
|
Reference in New Issue
Block a user