Skip to content

Automated Section renumber and grammar extraction #629

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions standard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
- [§9.4.4.29](variables.md#94429--expressions) ?? expressions
- [§9.4.4.30](variables.md#94430--expressions) ?: expressions
- [§9.4.4.31](variables.md#94431-anonymous-functions) Anonymous functions
- [§9.4.4.32](variables.md#94432-rules-for-variables-in-local-functions) Rules for variables in local functions
- [§9.5](variables.md#95-variable-references) Variable references
- [§9.6](variables.md#96-atomicity-of-variable-references) Atomicity of variable references
- [§10](conversions.md#10-conversions) Conversions
Expand Down Expand Up @@ -398,6 +399,7 @@
- [§12.6.1](statements.md#1261-general) General
- [§12.6.2](statements.md#1262-local-variable-declarations) Local variable declarations
- [§12.6.3](statements.md#1263-local-constant-declarations) Local constant declarations
- [§12.6.4](statements.md#1264-local-function-declarations) Local function declarations
- [§12.7](statements.md#127-expression-statements) Expression statements
- [§12.8](statements.md#128-selection-statements) Selection statements
- [§12.8.1](statements.md#1281-general) General
Expand Down
2 changes: 1 addition & 1 deletion standard/basic-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ The ***declared accessibility*** of a member can be one of the following:
- Protected, which is selected by including a `protected` modifier in the member declaration. The intuitive meaning of `protected` is “access limited to the containing class or types derived from the containing class”.
- Internal, which is selected by including an `internal` modifier in the member declaration. The intuitive meaning of `internal` is “access limited to this assembly”.
- Protected internal, which is selected by including both a `protected` and an `internal` modifier in the member declaration. The intuitive meaning of `protected internal` is “accessible within this assembly as well as types derived from the containing class”.
- Private protected, which is selected by including both a `private` and a `protected` modifier in the member declaration. The intuitive meaning of `private protected` is "accessible within this assembly by the containing class and types derived from the containing class."
- Private protected, which is selected by including both a `private` and a `protected` modifier in the member declaration. The intuitive meaning of `private protected` is accessible within this assembly by the containing class and types derived from the containing class.
- Private, which is selected by including a `private` modifier in the member declaration. The intuitive meaning of `private` is “access limited to the containing type”.

Depending on the context in which a member declaration takes place, only certain types of declared accessibility are permitted. Furthermore, when a member declaration does not include any access modifiers, the context in which the declaration takes place determines the default declared accessibility.
Expand Down
Loading