Skip to content
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

Feat/assignment component #208

Draft
wants to merge 16 commits into
base: main
Choose a base branch
from
Draft

Feat/assignment component #208

wants to merge 16 commits into from

Commits on Nov 7, 2024

  1. Renamed Assignment.getText to getLabel.

    `getText` is often used to get the raw code under a context.
    MrCoder committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    1894145 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c584bfd View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. Configuration menu
    Copy the full SHA
    6321863 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac2aadc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6bf8a14 View commit details
    Browse the repository at this point in the history
  4. Moved MessageContextListener to under src.

    So we can use '@/parser'.
    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    4b24d5c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b224878 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2a2d0b2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    27165a6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c128c6a View commit details
    Browse the repository at this point in the history
  9. Avoid returning null from RootContext.

    To avoid typing errors.
    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    5e17e89 View commit details
    Browse the repository at this point in the history
  10. Shortened import in index.js

    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    8d19870 View commit details
    Browse the repository at this point in the history
  11. Fixed gh pages.

    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    cd33a17 View commit details
    Browse the repository at this point in the history
  12. Build site for branches.

    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    a41ec35 View commit details
    Browse the repository at this point in the history
  13. Fixed an issue when label Text is null.

    To reproduce this:
    1. type `a=b`
    2. add `if` in front of the above line.
    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    5158fe6 View commit details
    Browse the repository at this point in the history
  14. Fixed a parsing issue of

    ```
    if(x) {
     x = y
    ```
    MrCoder committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    17c53bc View commit details
    Browse the repository at this point in the history