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
refactor(ivy): Move instructions back to ɵɵ (angular#30546)
There is an encoding issue with using delta `Δ`, where the browser will attempt to detect the file encoding if the character set is not explicitly declared on a `<script/>` tag, and Chrome will find the `Δ` character and decide it is window-1252 encoding, which misinterprets the `Δ` character to be some other character that is not a valid JS identifier character
So back to the frog eyes we go.
```
__
/ɵɵ\
( -- ) - I am ineffable. I am forever.
_/ \_
/ \ / \
== == ==
```
PR Closeangular#30546
|[`DefaultIterableDiffer`](api/core/DefaultIterableDiffer)| n/a | v4 | Not part of public API. |
54
-
|[`defineInjectable`](api/core/defineInjectable)|`ΔdefineInjectable`| v8 | Used only in generated code. No source code should depend on this API. |
55
-
|[`inject`](api/core/inject)|`Δinject`| v8 | Used only in generated code. No source code should depend on this API. |
54
+
|[`defineInjectable`](api/core/defineInjectable)|`ɵɵdefineInjectable`| v8 | Used only in generated code. No source code should depend on this API. |
55
+
|[`inject`](api/core/inject)|`ɵɵinject`| v8 | Used only in generated code. No source code should depend on this API. |
56
56
|[`ReflectiveInjector`](api/core/ReflectiveInjector)|[`Injector.create`](api/core/Injector#create)| v5 | See [`ReflectiveInjector`](#reflectiveinjector)|
Copy file name to clipboardExpand all lines: docs/PUBLIC_API.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ We explicitly don't consider the following to be our public API surface:
37
37
38
38
- any file/import paths within our package except for the `/`, `/testing` and `/bundles/*` and other documented package entry-points.
39
39
- constructors of injectable classes (services and directives) - please use DI to obtain instances of these classes
40
-
- any class members or symbols marked as `private`, or prefixed with underscore (`_`), [barred latin o](https://en.wikipedia.org/wiki/%C6%9F) (`ɵ`), and [greek delta](https://en.wikipedia.org/wiki/Delta_(letter)) (`Δ`).
40
+
- any class members or symbols marked as `private`, or prefixed with underscore (`_`), [barred latin o](https://en.wikipedia.org/wiki/%C6%9F) (`ɵ`), and double barred latin o (`ɵɵ`).
41
41
- extending any of our classes unless the support for this is specifically documented in the API docs
42
42
- the contents and API surface of the code generated by Angular's compiler (with one notable exception: the existence and name of `NgModuleFactory` instances exported from generated code is guaranteed)
0 commit comments