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: dolphinsmalltalk/Dolphin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.1.29
Choose a base ref
...
head repository: dolphinsmalltalk/Dolphin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.1.30
Choose a head ref
  • 4 commits
  • 14 files changed
  • 1 contributor

Commits on Dec 29, 2023

  1. Simple negative floats not scanned correctly (sign lost)

    The SmalltalkScanner used for refactorings, live error reporting and some
    other IDE purposes, loses the sign of simple negative floats. This hasn't
    mattered much to date because the literal values generated are not consumed,
    e.g. when an AST is used to reformat code, the original number syntax is
    preserved.
    
    To Reproduce evaluate:
    
    (SmalltalkScanner on: '-1.23' readStream) next value "=> 1.23"
    
    Obviously the result should be -1.23.
    
    1-line fix and test value update in 8. For 7.1, ported over most of the
    ScannerTest class from 8.
    blairmcg committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    de5e338 View commit details
    Browse the repository at this point in the history
  2. Skip InternetAddressTest>>testHost in CI build

    Too dependent on network config of the host
    blairmcg committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    71a62af View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Configuration menu
    Copy the full SHA
    13b4f9e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9fb17cb View commit details
    Browse the repository at this point in the history
Loading