Skip to content

Commit 2ab9338

Browse files
committed
b9155b5 docs: set syntax highlighting to the remaining Markdown code examples blocks (#59088)
1 parent 97d2b66 commit 2ab9338

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Jan 14 20:02:51 UTC 2025
2-
265265a3f8ac7759fed9c0b368b5db466fffa431
1+
Tue Jan 14 20:22:00 UTC 2025
2+
b9155b512175ede6ad56d69ccb04d556b293e589

bundles/chunk-T2HQMWRH.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles_metadata.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

linker/src/file_linker/partial_linkers/util.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
99
import { AstObject, AstValue } from '../../ast/ast_value';
10-
export declare const PLACEHOLDER_VERSION = "19.2.0-next.0+sha-265265a";
10+
export declare const PLACEHOLDER_VERSION = "19.2.0-next.0+sha-b9155b5";
1111
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
1212
/**
1313
* Parses the value of an enum from the AST value's symbol name.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler-cli",
3-
"version": "19.2.0-next.0+sha-265265a",
3+
"version": "19.2.0-next.0+sha-b9155b5",
44
"description": "Angular - the compiler CLI for Node.js",
55
"typings": "index.d.ts",
66
"bin": {
@@ -53,7 +53,7 @@
5353
"yargs": "^17.2.1"
5454
},
5555
"peerDependencies": {
56-
"@angular/compiler": "19.2.0-next.0+sha-265265a",
56+
"@angular/compiler": "19.2.0-next.0+sha-b9155b5",
5757
"typescript": ">=5.5 <5.8"
5858
},
5959
"repository": {

src/ngtsc/diagnostics/src/error_code.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export declare enum ErrorCode {
224224
* The left-hand side of an assignment expression was a template variable. Effectively, the
225225
* template looked like:
226226
*
227-
* ```
227+
* ```html
228228
* <ng-template let-something>
229229
* <button (click)="something = ...">...</button>
230230
* </ng-template>

src/ngtsc/reflection/src/host.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export interface ClassMember {
128128
*
129129
* For example, the TS code:
130130
*
131-
* ```
131+
* ```ts
132132
* class Clazz {
133133
* static get property(): string {
134134
* return 'value';
@@ -138,7 +138,7 @@ export interface ClassMember {
138138
*
139139
* Downlevels to:
140140
*
141-
* ```
141+
* ```ts
142142
* var Clazz = (function () {
143143
* function Clazz() {
144144
* }
@@ -157,7 +157,7 @@ export interface ClassMember {
157157
* Object.defineProperty ExpressionStatement, but the implementation would be this
158158
* FunctionDeclaration:
159159
*
160-
* ```
160+
* ```ts
161161
* function () {
162162
* return 'value';
163163
* },
@@ -529,7 +529,7 @@ export interface ReflectionHost {
529529
* If the declaration is in a different module, and that module is imported via an absolute path,
530530
* this method also returns the absolute path of the imported module. For example, if the code is:
531531
*
532-
* ```
532+
* ```ts
533533
* import {RouterModule} from '@angular/core';
534534
*
535535
* export const ROUTES = RouterModule.forRoot([...]);

src/ngtsc/reflection/src/typescript.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ export declare class TypeScriptReflectionHost implements ReflectionHost {
3939
*
4040
* For example, if the identifier is the `Directive` part of a qualified type chain like:
4141
*
42-
* ```
42+
* ```ts
4343
* core.Directive
4444
* ```
4545
*
4646
* then it might be that `core` is a namespace import such as:
4747
*
48-
* ```
48+
* ```ts
4949
* import * as core from 'tslib';
5050
* ```
5151
*

src/ngtsc/typecheck/api/symbols.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export interface ReferenceSymbol {
142142
/**
143143
* The location in the shim file of a variable that holds the type of the local ref.
144144
* For example, a reference declaration like the following:
145-
* ```
145+
* ```ts
146146
* var _t1 = document.createElement('div');
147147
* var _t2 = _t1; // This is the reference declaration
148148
* ```

0 commit comments

Comments
 (0)