Thanks to visit codestin.com
Credit goes to github.com

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: fjl/geas
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.0
Choose a base ref
...
head repository: fjl/geas
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 31 files changed
  • 1 contributor

Commits on Oct 24, 2025

  1. asm: remove iterSections

    fjl committed Oct 24, 2025
    Configuration menu
    Copy the full SHA
    ac67525 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2025

  1. all: add source code formatter (#22)

    Here I am adding a source code formatting tool, geas -f. The purpose of this
    tool is similar to gofmt, it indents the code applies a canonical style.
    End-of-line comments are automatically aligned to the same column across the
    entire document.
    
    To make this work, the AST is extended with comment nodes. Lines containing just
    a comment are represented by a dedicated comment statement. For comments that
    follow a statement on the same line, the AST node of the statement tracks the
    attached comment node.
    
    The AST has seen a few general simplifications in the process: names of
    statement types have been improved and all statements now share a base object
    type containing the position and attached comment. Parenthesized expressions are
    now wrapped in a GroupNode so the parentheses will be kept by the formatter.
    fjl authored Nov 25, 2025
    Configuration menu
    Copy the full SHA
    671647a View commit details
    Browse the repository at this point in the history
  2. README.md: update

    fjl committed Nov 25, 2025
    Configuration menu
    Copy the full SHA
    132ee06 View commit details
    Browse the repository at this point in the history
Loading