Skip to content

Commit 676e78e

Browse files
author
rafael.cordeiro
committed
Merge main into PR55: stdlib/IO integration with metabuiltins (print, input, open)
2 parents dbf22d6 + bcf27e3 commit 676e78e

33 files changed

Lines changed: 5336 additions & 349 deletions

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

Cargo.lock

Lines changed: 63 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,14 @@ edition = "2021"
77
nom = "7.0"
88
approx = "0.5.1"
99
once_cell = "1.10"
10+
indexmap = "2.2"
1011
predicates = "3.1.3"
1112
assert_cmd = "2.0.17"
13+
14+
[features]
15+
# Ativar contadores de instrumentação do pretty printer
16+
pp-profile = []
17+
# Habilita cache experimental para resultados de flatten (memoization estrutural)
18+
pp-flatten-cache = []
19+
# Mede duração do render do pretty printer e expõe função com métricas
20+
pp-timing = []

0 commit comments

Comments
 (0)