Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
angular/packages/compiler/src/parse_util.ts at main · angular/angular · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
angular
/
angular
Public
Notifications
You must be signed in to change notification settings
Fork
27.5k
Star
101k
Code
Issues
982
Pull requests
203
Discussions
Actions
Projects
Security and quality
33
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
angular
/
packages
/
compiler
/
src
/
parse_util.ts
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
241 lines (219 loc) · 7 KB
main
Breadcrumbs
angular
/
packages
/
compiler
/
src
/
parse_util.ts
Copy path
Top
File metadata and controls
Code
Blame
241 lines (219 loc) · 7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/**
*
@license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import
*
as
chars
from
'./chars'
;
import
{
stringify
}
from
'./util'
;
export
class
ParseLocation
{
constructor
(
public
file
:
ParseSourceFile
,
public
offset
:
number
,
public
line
:
number
,
public
col
:
number
,
)
{
}
toString
(
)
:
string
{
return
this
.
offset
!=
null
?
`
${
this
.
file
.
url
}
@
${
this
.
line
}
:
${
this
.
col
}
`
:
this
.
file
.
url
;
}
moveBy
(
delta
:
number
)
:
ParseLocation
{
const
source
=
this
.
file
.
content
;
const
len
=
source
.
length
;
let
offset
=
this
.
offset
;
let
line
=
this
.
line
;
let
col
=
this
.
col
;
while
(
offset
>
0
&&
delta
<
0
)
{
offset
--
;
delta
++
;
const
ch
=
source
.
charCodeAt
(
offset
)
;
if
(
ch
==
chars
.
$LF
)
{
line
--
;
const
priorLine
=
source
.
substring
(
0
,
offset
-
1
)
.
lastIndexOf
(
String
.
fromCharCode
(
chars
.
$LF
)
)
;
col
=
priorLine
>
0
?
offset
-
priorLine
:
offset
;
}
else
{
col
--
;
}
}
while
(
offset
<
len
&&
delta
>
0
)
{
const
ch
=
source
.
charCodeAt
(
offset
)
;
offset
++
;
delta
--
;
if
(
ch
==
chars
.
$LF
)
{
line
++
;
col
=
0
;
}
else
{
col
++
;
}
}
return
new
ParseLocation
(
this
.
file
,
offset
,
line
,
col
)
;
}
// Return the source around the location
// Up to `maxChars` or `maxLines` on each side of the location
getContext
(
maxChars
:
number
,
maxLines
:
number
)
:
{
before
:
string
;
after
:
string
}
|
null
{
const
content
=
this
.
file
.
content
;
let
startOffset
=
this
.
offset
;
if
(
startOffset
!=
null
)
{
if
(
startOffset
>
content
.
length
-
1
)
{
startOffset
=
content
.
length
-
1
;
}
let
endOffset
=
startOffset
;
let
ctxChars
=
0
;
let
ctxLines
=
0
;
while
(
ctxChars
<
maxChars
&&
startOffset
>
0
)
{
startOffset
--
;
ctxChars
++
;
if
(
content
[
startOffset
]
==
'\n'
)
{
if
(
++
ctxLines
==
maxLines
)
{
break
;
}
}
}
ctxChars
=
0
;
ctxLines
=
0
;
while
(
ctxChars
<
maxChars
&&
endOffset
<
content
.
length
-
1
)
{
endOffset
++
;
ctxChars
++
;
if
(
content
[
endOffset
]
==
'\n'
)
{
if
(
++
ctxLines
==
maxLines
)
{
break
;
}
}
}
return
{
before
:
content
.
substring
(
startOffset
,
this
.
offset
)
,
after
:
content
.
substring
(
this
.
offset
,
endOffset
+
1
)
,
}
;
}
return
null
;
}
}
export
class
ParseSourceFile
{
constructor
(
public
content
:
string
,
public
url
:
string
,
)
{
}
}
export
class
ParseSourceSpan
{
/**
* Create an object that holds information about spans of tokens/nodes captured during
* lexing/parsing of text.
*
*
@param
start
* The location of the start of the span (having skipped leading trivia).
* Skipping leading trivia makes source-spans more "user friendly", since things like HTML
* elements will appear to begin at the start of the opening tag, rather than at the start of any
* leading trivia, which could include newlines.
*
*
@param
end
* The location of the end of the span.
*
*
@param
fullStart
* The start of the token without skipping the leading trivia.
* This is used by tooling that splits tokens further, such as extracting Angular interpolations
* from text tokens. Such tooling creates new source-spans relative to the original token's
* source-span. If leading trivia characters have been skipped then the new source-spans may be
* incorrectly offset.
*
*
@param
details
* Additional information (such as identifier names) that should be associated with the span.
*/
constructor
(
public
start
:
ParseLocation
,
public
end
:
ParseLocation
,
public
fullStart
:
ParseLocation
=
start
,
public
details
:
string
|
null
=
null
,
)
{
}
toString
(
)
:
string
{
return
this
.
start
.
file
.
content
.
substring
(
this
.
start
.
offset
,
this
.
end
.
offset
)
;
}
}
export
enum
ParseErrorLevel
{
WARNING
,
ERROR
,
}
export
class
ParseError
extends
Error
{
constructor
(
/** Location of the error. */
readonly
span
:
ParseSourceSpan
,
/** Error message. */
readonly
msg
:
string
,
/** Severity level of the error. */
readonly
level
:
ParseErrorLevel
=
ParseErrorLevel
.
ERROR
,
/**
* Error that caused the error to be surfaced. For example, an error in a sub-expression that
* couldn't be parsed. Not guaranteed to be defined, but can be used to provide more context.
*/
readonly
relatedError
?:
unknown
,
)
{
super
(
msg
)
;
// Extending `Error` ends up breaking some internal tests. This appears to be a known issue
// when extending errors in TS and the workaround is to explicitly set the prototype.
// https://stackoverflow.com/questions/41102060/typescript-extending-error-class
Object
.
setPrototypeOf
(
this
,
new
.
target
.
prototype
)
;
}
contextualMessage
(
)
:
string
{
const
ctx
=
this
.
span
.
start
.
getContext
(
100
,
3
)
;
return
ctx
?
`
${
this
.
msg
}
("
${
ctx
.
before
}
[
${
ParseErrorLevel
[
this
.
level
]
}
->]
${
ctx
.
after
}
")`
:
this
.
msg
;
}
override
toString
(
)
:
string
{
const
details
=
this
.
span
.
details
?
`,
${
this
.
span
.
details
}
`
:
''
;
return
`
${
this
.
contextualMessage
(
)
}
:
${
this
.
span
.
start
}
${
details
}
`
;
}
}
/**
* Generates Source Span object for a given R3 Type for JIT mode.
*
*
@param
kind Component or Directive.
*
@param
typeName name of the Component or Directive.
*
@param
sourceUrl reference to Component or Directive source.
*
@returns
instance of ParseSourceSpan that represent a given Component or Directive.
*/
export
function
r3JitTypeSourceSpan
(
kind
:
string
,
typeName
:
string
,
sourceUrl
:
string
,
)
:
ParseSourceSpan
{
const
sourceFileName
=
`in
${
kind
}
${
typeName
}
in
${
sourceUrl
}
`
;
const
sourceFile
=
new
ParseSourceFile
(
''
,
sourceFileName
)
;
return
new
ParseSourceSpan
(
new
ParseLocation
(
sourceFile
,
-
1
,
-
1
,
-
1
)
,
new
ParseLocation
(
sourceFile
,
-
1
,
-
1
,
-
1
)
,
)
;
}
let
_anonymousTypeIndex
=
0
;
export
function
identifierName
(
compileIdentifier
:
CompileIdentifierMetadata
|
null
|
undefined
,
)
:
string
|
null
{
if
(
!
compileIdentifier
||
!
compileIdentifier
.
reference
)
{
return
null
;
}
const
ref
=
compileIdentifier
.
reference
;
if
(
ref
[
'__anonymousType'
]
)
{
return
ref
[
'__anonymousType'
]
;
}
if
(
ref
[
'__forward_ref__'
]
)
{
// We do not want to try to stringify a `forwardRef()` function because that would cause the
// inner function to be evaluated too early, defeating the whole point of the `forwardRef`.
return
'__forward_ref__'
;
}
let
identifier
=
stringify
(
ref
)
;
if
(
identifier
.
indexOf
(
'('
)
>=
0
)
{
// case: anonymous functions!
identifier
=
`anonymous_
${
_anonymousTypeIndex
++
}
`
;
ref
[
'__anonymousType'
]
=
identifier
;
}
else
{
identifier
=
sanitizeIdentifier
(
identifier
)
;
}
return
identifier
;
}
export
interface
CompileIdentifierMetadata
{
reference
:
any
;
}
export
function
sanitizeIdentifier
(
name
:
string
)
:
string
{
return
name
.
replace
(
/
\W
/
g
,
'_'
)
;
}
You can’t perform that action at this time.