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: seaofvoices/darklua
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.14.0
Choose a base ref
...
head repository: seaofvoices/darklua
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.14.1
Choose a head ref
  • 9 commits
  • 67 files changed
  • 2 contributors

Commits on Oct 21, 2024

  1. Add rule to remove if expressions (#221)

    This PR add a new rule that remove `if` expressions and convert them
    into an equivalent expression.
    
    ---------
    
    Co-authored-by: jiwonz <jiwonz0113@gmail.com>
    jeparlefrancais and jiwonz authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    1752449 View commit details
    Browse the repository at this point in the history
  2. Fix negative zero sign erasure (#222)

    This avoids bugs were the evaluator was replacing `-0` results with
    only `0`.
    jeparlefrancais authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    9cbf20d View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2024

  1. Add rule to remove continue statements (#227)

    This rule converts `continue` statements into an equivalent construct
    that only uses `break` statements.
    
    Co-authored-by: jiwonz <jiwonz0113@gmail.com>
    jeparlefrancais and jiwonz authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    f132b28 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bfab269 View commit details
    Browse the repository at this point in the history
  3. Add rule to remove floor division operations (#230)

    Add a new rule `remove_floor_division` to remove usage of `//` in
    expressions or compound assignments (`//=`). The code is replaced with a
    `math.floor` call on a regular division.
    jeparlefrancais authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    38ff2da View commit details
    Browse the repository at this point in the history
  4. Fix append_text_comment rule to not add an extra space (#231)

    Remove the extra space that is added in front of comments. This makes it
    possible to generate comments like `--!native` which are useful in Luau.
    jeparlefrancais authored Nov 22, 2024
    Configuration menu
    Copy the full SHA
    c189e63 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    852dd2c View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2024

  1. Configuration menu
    Copy the full SHA
    62eb311 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

  1. Configuration menu
    Copy the full SHA
    1ef2a42 View commit details
    Browse the repository at this point in the history
Loading