|
752 | 752 | https://angular.dev/guide/templates/expression-syntax#what-operators-are-supported |
753 | 753 | --> |
754 | 754 |
|
755 | | - {{ - + * / % === !== == != = < <= >= > && || ! ?? ** }} |
| 755 | + {{ - + * / % === !== == != = < <= >= > && || ! ?? ** += -= *= /= &&= ||= ??= **= }} |
756 | 756 | <!-- ^ keyword.operator.arithmetic.ngx --> |
757 | 757 | <!-- ^ keyword.operator.arithmetic.ngx --> |
758 | 758 | <!-- ^ keyword.operator.arithmetic.ngx --> |
|
772 | 772 | <!-- ^ keyword.operator.logical.ngx --> |
773 | 773 | <!-- ^^ keyword.operator.null-coalescing.ngx --> |
774 | 774 | <!-- ^^ keyword.operator.arithmetic.ngx --> |
| 775 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 776 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 777 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 778 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 779 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 780 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 781 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 782 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
775 | 783 |
|
776 | 784 | <!-- ternary --> |
777 | 785 | {{ foo ? bar : baz }} |
|
1092 | 1100 | <!-- ^ string.quoted.double.ngx punctuation.definition.string.end.ngx --> |
1093 | 1101 | <!-- ^ punctuation.definition.tag.end.html --> |
1094 | 1102 |
|
| 1103 | +<div (output)="var = exp" > |
| 1104 | +<!--^^^^^^^^^^^^^^^^^^^^^^^ meta.tag --> |
| 1105 | +<!-- ^^^^^^^^ meta.directive.on.ngx --> |
| 1106 | +<!-- ^ meta.directive.ngx --> |
| 1107 | +<!-- ^^^^^^^^^^^ meta.directive.value.ngx meta.string.ngx --> |
| 1108 | +<!-- ^ punctuation.definition.on.begin.ngx --> |
| 1109 | +<!-- ^^^^^^ entity.other.attribute-name.on.ngx --> |
| 1110 | +<!-- ^ punctuation.definition.on.end.ngx --> |
| 1111 | +<!-- ^ punctuation.separator.key-value.ngx --> |
| 1112 | +<!-- ^ string.quoted.double.ngx punctuation.definition.string.begin.ngx --> |
| 1113 | +<!-- ^^^^^^^^^ meta.embedded.expression.ngx source.ngx.embedded.html - string --> |
| 1114 | +<!-- ^^^ variable.other.readwrite.ngx --> |
| 1115 | +<!-- ^ keyword.operator.assignment.ngx --> |
| 1116 | +<!-- ^^^ variable.other.readwrite.ngx --> |
| 1117 | +<!-- ^ string.quoted.double.ngx punctuation.definition.string.end.ngx --> |
| 1118 | +<!-- ^ punctuation.definition.tag.end.html --> |
| 1119 | + |
| 1120 | + |
| 1121 | +<div (output)="var += exp" > |
| 1122 | +<!--^^^^^^^^^^^^^^^^^^^^^^^ meta.tag --> |
| 1123 | +<!-- ^^^^^^^^ meta.directive.on.ngx --> |
| 1124 | +<!-- ^ meta.directive.ngx --> |
| 1125 | +<!-- ^^^^^^^^^^^^ meta.directive.value.ngx meta.string.ngx --> |
| 1126 | +<!-- ^ punctuation.definition.on.begin.ngx --> |
| 1127 | +<!-- ^^^^^^ entity.other.attribute-name.on.ngx --> |
| 1128 | +<!-- ^ punctuation.definition.on.end.ngx --> |
| 1129 | +<!-- ^ punctuation.separator.key-value.ngx --> |
| 1130 | +<!-- ^ string.quoted.double.ngx punctuation.definition.string.begin.ngx --> |
| 1131 | +<!-- ^^^^^^^^^^ meta.embedded.expression.ngx source.ngx.embedded.html - string --> |
| 1132 | +<!-- ^^^ variable.other.readwrite.ngx --> |
| 1133 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 1134 | +<!-- ^^^ variable.other.readwrite.ngx --> |
| 1135 | +<!-- ^ string.quoted.double.ngx punctuation.definition.string.end.ngx --> |
| 1136 | +<!-- ^ punctuation.definition.tag.end.html --> |
| 1137 | + |
| 1138 | +<div (output)="var -= exp" > |
| 1139 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 1140 | + |
| 1141 | +<div (output)="var *= exp" > |
| 1142 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 1143 | + |
| 1144 | +<div (output)="var /= exp" > |
| 1145 | +<!-- ^^ keyword.operator.assignment.augmented.ngx --> |
| 1146 | + |
| 1147 | +<div (output)="var &&= exp" > |
| 1148 | +<!-- ^^^ keyword.operator.assignment.augmented.ngx --> |
| 1149 | + |
| 1150 | +<div (output)="var ||= exp" > |
| 1151 | +<!-- ^^^ keyword.operator.assignment.augmented.ngx --> |
| 1152 | + |
| 1153 | +<div (output)="var ??= exp" > |
| 1154 | +<!-- ^^^ keyword.operator.assignment.augmented.ngx --> |
| 1155 | + |
| 1156 | +<div (output)="var **= exp" > |
| 1157 | +<!-- ^^^ keyword.operator.assignment.augmented.ngx --> |
| 1158 | + |
1095 | 1159 | <div (@animation.event)="exp + res / ion" > |
1096 | 1160 | <!--^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.tag --> |
1097 | 1161 | <!-- ^^^^^^^^^^^^^^^^^^ meta.directive.on.ngx --> |
|
0 commit comments