Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AssemblyScript/assemblyscript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.12.6
Choose a base ref
...
head repository: AssemblyScript/assemblyscript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.13.0
Choose a head ref
  • 2 commits
  • 38 files changed
  • 1 contributor

Commits on Jun 30, 2020

  1. chore: Unify README badges

    dcodeIO committed Jun 30, 2020
    Configuration menu
    Copy the full SHA
    2f525c0 View commit details
    Browse the repository at this point in the history
  2. Enforce strict field initialization (#1349)

    BREAKING CHANGE: Instance fields not definitely assigned within the constructor now yield an error, unless the field's name is annotated with a trailing `!` (checked at runtime), is of a nullable or is of a value type (initialized to zero). Fields of non-nullable reference types must be assigned before `this` is either implicitly or explicitly returned from the constructor, passed to another function or another instance method is called on `this`. Overall the behavior is similar to, but not exactly the same as `--strictPropertyInitialization` in TypeScript.
    dcodeIO authored Jun 30, 2020
    Configuration menu
    Copy the full SHA
    57a55d3 View commit details
    Browse the repository at this point in the history
Loading