-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: amad3i/TypeScriptToLua
base: bd00c15
head repository: TypeScriptToLua/TypeScriptToLua
compare: c3dc829
- 14 commits
- 39 files changed
- 8 contributors
Commits on Dec 27, 2025
-
Fix constructor scope breaking vararg spread optimization (TypeScript…
…ToLua#1675) * Fix constructor scope breaking vararg spread optimization * remove test debug * fix typo in test name
Configuration menu - View commit details
-
Copy full SHA for a6230a7 - Browse repository at this point
Copy the full SHA a6230a7View commit details
Commits on Dec 30, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 171546b - Browse repository at this point
Copy the full SHA 171546bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bdd6f1d - Browse repository at this point
Copy the full SHA bdd6f1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f15449f - Browse repository at this point
Copy the full SHA f15449fView commit details
Commits on Jan 23, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 6fa24e8 - Browse repository at this point
Copy the full SHA 6fa24e8View commit details
Commits on Feb 23, 2026
-
Fix enum nested in namespace (TypeScriptToLua#1682)
* fix enum nested in namespace * use snapshot to test
Configuration menu - View commit details
-
Copy full SHA for e1f5d4f - Browse repository at this point
Copy the full SHA e1f5d4fView commit details -
Add lua 5.5 target (TypeScriptToLua#1680)
* Add lua 5.5 target * Fix failing tests * Missed one more failing test
Configuration menu - View commit details
-
Copy full SHA for 8a0a85d - Browse repository at this point
Copy the full SHA 8a0a85dView commit details
Commits on Mar 3, 2026
-
Bump minimatch (TypeScriptToLua#1686)
Bumps and [minimatch](https://github.com/isaacs/minimatch). These dependencies needed to be updated together. Updates `minimatch` from 3.1.2 to 3.1.5 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](isaacs/minimatch@v3.1.2...v3.1.5) Updates `minimatch` from 9.0.5 to 9.0.9 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](isaacs/minimatch@v3.1.2...v3.1.5) Updates `minimatch` from 5.1.6 to 5.1.9 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](isaacs/minimatch@v3.1.2...v3.1.5) --- updated-dependencies: - dependency-name: minimatch dependency-version: 3.1.5 dependency-type: indirect - dependency-name: minimatch dependency-version: 9.0.9 dependency-type: indirect - dependency-name: minimatch dependency-version: 5.1.9 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 9bdb41d - Browse repository at this point
Copy the full SHA 9bdb41dView commit details -
fix
debug.tracebackfailing on anonymous function (TypeScriptToLua#……1665) (TypeScriptToLua#1666) * fix `debug.traceback` failing on anonymous function (TypeScriptToLua#1665) * test: add regression test for anonymous function traceback mapping (TypeScriptToLua#1665) Nested IIFEs produce <file.lua:N> notation in debug.traceback(). The old pattern (%S+) captured the "<" prefix, causing sourcemap lookup to fail for anonymous function definition locations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test: address review feedback for anonymous function traceback test (TypeScriptToLua#1665) Use distinct sourcemap values and explicit <main.ts:N> assertions per reviewer request. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style: extract setLuaHeader string to variable for prettier Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Configuration menu - View commit details
-
Copy full SHA for a3f2eea - Browse repository at this point
Copy the full SHA a3f2eeaView commit details
Commits on Mar 8, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 5cd8abf - Browse repository at this point
Copy the full SHA 5cd8abfView commit details -
Configuration menu - View commit details
-
Copy full SHA for dfef9f4 - Browse repository at this point
Copy the full SHA dfef9f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bdbed8 - Browse repository at this point
Copy the full SHA 1bdbed8View commit details
Commits on Mar 24, 2026
-
fix try/finally not re-throwing errors when there is no catch clause (T…
…ypeScriptToLua#1692) * fix try/finally not re-throwing errors when there is no catch clause (TypeScriptToLua#1667) When a try block had a finally but no catch, pcall's error result was discarded, silently swallowing the exception. Now the error is captured and re-thrown after the finally block executes. * Nicer test return values
Configuration menu - View commit details
-
Copy full SHA for cfb6e2b - Browse repository at this point
Copy the full SHA cfb6e2bView commit details -
fix Set iterator not reflecting mutations after creation (TypeScriptT…
…oLua#1691) * fix Set iterator not reflecting mutations after creation (TypeScriptToLua#1671) Set.values(), keys(), and entries() eagerly captured firstKey at iterator creation time. If the Set was mutated (e.g. via delete) before the iterator was consumed, the iterator still saw the stale firstKey. Read firstKey lazily on the first next() call instead. * Add tests for Set iterator mutation and exhaustion behavior * Fix Map iterator mutation and add tests for mutation and exhaustion behavior
Configuration menu - View commit details
-
Copy full SHA for c3dc829 - Browse repository at this point
Copy the full SHA c3dc829View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff bd00c15...c3dc829