From e4c09776b020dd49948f0484f67aaa02416fd2d5 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Tue, 20 Jan 2026 20:26:04 +0100 Subject: [PATCH] refactor(compiler): remove unused symbols Removes symbols that aren't used anymore from the identifiers map. --- packages/compiler/src/render3/r3_identifiers.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/compiler/src/render3/r3_identifiers.ts b/packages/compiler/src/render3/r3_identifiers.ts index ea0b0e1f81e..3243cc4657d 100644 --- a/packages/compiler/src/render3/r3_identifiers.ts +++ b/packages/compiler/src/render3/r3_identifiers.ts @@ -11,14 +11,8 @@ import * as o from '../output/output_ast'; const CORE = '@angular/core'; export class Identifiers { - /* Methods */ - static NEW_METHOD = 'factory'; - static TRANSFORM_METHOD = 'transform'; - static PATCH_DEPS = 'patchedDeps'; - static core: o.ExternalReference = {name: null, moduleName: CORE}; - /* Instructions */ static namespaceHTML: o.ExternalReference = {name: 'ɵɵnamespaceHTML', moduleName: CORE}; static namespaceMathML: o.ExternalReference = {name: 'ɵɵnamespaceMathML', moduleName: CORE};