Skip to content

Commit

Permalink
#3644: master
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 12, 2024
1 parent 18b88a8 commit e10f069
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eo-parser/src/main/antlr4/org/eolang/parser/Phi.g4
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ lambdaBinding
;

FUNCTION
: [A-Z][A-Za-z_φ]*
: [A-Z][A-Z0-9a-z_φ]*
;

application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
hi-大家 ↦ ⟦ ⟧,
α0 ↦ Φ () () (),
α65536 ↦ Φ.r,
k ↦ ⟦ λ ⤍ FunctionName, α0 ↦ ⟦ λ ⤍ FunctionName, Δ ⤍ 42- ⟧ ⟧,
k ↦ ⟦ λ ⤍ Function_Name_i64, α0 ↦ ⟦ λ ⤍ FunctionName, Δ ⤍ 42- ⟧ ⟧,
terminator-application ↦ ⊥ (t ↦ ξ.t),
terminator-dispatch ↦ ⊥.t,
string ↦ "Hello",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{⟦ k ↦ ξ.αx.t ⟧}
1 change: 1 addition & 0 deletions eo-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ SOFTWARE.
<targetDir>${project.build.directory}/eo-test</targetDir>
<phiInputDir>${project.build.directory}/eo-test/2-optimize</phiInputDir>
<phiOutputDir>${project.build.directory}/eo-test/phi</phiOutputDir>
<unphiInputDir>${project.build.directory}/eo-test/phi</unphiInputDir>
<unphiOutputDir>${project.build.directory}/eo-test/unphi</unphiOutputDir>
<addSourcesRoot>false</addSourcesRoot>
<addTestSourcesRoot>true</addTestSourcesRoot>
Expand Down
3 changes: 2 additions & 1 deletion eo-runtime/src/test/groovy/check-folders-numbering.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ var allowed = [
'6-lint',
'7-pre',
'8-transpile',
'phi'
'phi',
'unphi'
]
List<File> allowedDirs = allowed.stream()
.map { target.resolve(it).toFile() }
Expand Down

0 comments on commit e10f069

Please sign in to comment.