more mass renaming

This commit is contained in:
2026-06-02 01:48:05 -07:00
parent eff77fff6b
commit 270f192f0c
53 changed files with 1264 additions and 431 deletions
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_ABC'x'
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_ABC0DEF
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_AB0I'x'bar
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_AB0xDEF
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_ABClet
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_foolbar
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_ABC'foo
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ct_fooObar
()
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : int =
let _ = #deadbeef
42
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : int =
let _ = '\xab'
42
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : int =
let _ = '\x{ff}'
42
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : string =
"hello
world"
@@ -0,0 +1,4 @@
contract Test =
type state = unit
entrypoint init() : state =
() /*
@@ -0,0 +1,3 @@
contract Test =
entrypoint main() : int =
1 + /* unclosed
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : int =
/* outer /* inner */ outer still open
42
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : int =
/* unclosed block comment
42
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : string =
"hello\
world"
@@ -0,0 +1,5 @@
contract Test =
type state = unit
entrypoint init() : state =
let _ = 'é'
()
@@ -0,0 +1,4 @@
contract Test =
entrypoint main() : int =
let c = 'Ā'
Char.to_int(c)
@@ -0,0 +1,3 @@
contract Test =
entrypoint greet() : string =
"∑∆∏"
@@ -0,0 +1,3 @@
contract Col2Byte =
entrypoint greet() : string =
"Héllo" + " world"
@@ -0,0 +1,3 @@
contract Col3Byte =
entrypoint price() : string =
"Price: €10" + " incl."
@@ -0,0 +1,3 @@
contract Col4Byte =
entrypoint celebrate() : string =
"Hello 🎉" + " world"
@@ -0,0 +1,3 @@
contract ColBcom =
entrypoint compute(x : int) : int =
/* résultat */ x + 1
@@ -0,0 +1,3 @@
contract ColMulti =
entrypoint unicode_str() : string =
"Ünïcödé" + " ok"
@@ -0,0 +1,8 @@
main contract Foo =
type state = unit
entrypoint init(): state =
()
entrypoint foo'(): unit = ()
entrypoint foo'bar'(): unit = ()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = ak_ABC123
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = sg_foo_bar
()
@@ -0,0 +1,5 @@
contract Foo =
type state = unit
entrypoint init(): state =
let _ = sg_GHI
()