mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
f91f222b55
Currently the field encapsulation undergoes some static analysis to check if it is `ViewEncapsulation` enum. Such static check fails in local compilation mode in g3 as the symbol cannot be resolved. On the other hand this field has to be resolved statically as its value determined the generated code. So in local compilation mode we add a lighter resolving logic which relies only on local information. PR Close #51848