Files
sdk/pkg/compiler/lib/src/code_organization.md
T
Ahmed Ashour 5fe480b788 Fix typos
Fix #49864

TEST=ci

Change-Id: I9a7e06d604cd0b4f56f2ac229ab3fc9f01cb9d76
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/256824
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
Reviewed-by: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Lasse Nielsen <lrn@google.com>
Reviewed-by: Liam Appelbe <liama@google.com>
Reviewed-by: Mayank Patke <fishythefish@google.com>
2022-09-16 19:35:00 +00:00

703 B

[comment]: WIP - code is being refactored...

##General code organization of this package

lib/src/ |- ... |- universe/ - how we represent the closed-world semantics of a program.

[comment]: TODO fill in the rest

##Details

Universe

[comment]: TODO rename universe => world [comment]: TODO consider merging feature.dart and use.dart

How we represent the closed-world semantics of a program.

universe/ |- feature.dart - Features that may be used in the program. Using a feature | pulls in special code that the compiler needs to support it. |- use.dart - Describes a use of an element (a method, a class) and how it | is used by the program.