-
Notifications
You must be signed in to change notification settings - Fork 422
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'version-1.5.x' into node-2520-corrected-fail-reject-on-…
…transfer-balance-error
- Loading branch information
Showing
179 changed files
with
2,701 additions
and
2,386 deletions.
There are no files selected for viewing
11 changes: 5 additions & 6 deletions
11
benchmark/src/test/scala/com/wavesplatform/lang/v1/EvaluatorV2Benchmark.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
lang/shared/src/main/scala/com/wavesplatform/lang/v1/compiler/CompilationStepResultDec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.wavesplatform.lang.v1.compiler | ||
|
||
import com.wavesplatform.lang.v1.compiler.Types.FINAL | ||
import com.wavesplatform.lang.v1.parser.Expressions | ||
|
||
case class CompilationStepResultDec( | ||
ctx: CompilerContext, | ||
dec: Terms.DECLARATION, | ||
t: FINAL, | ||
parseNodeExpr: Expressions.Declaration, | ||
errors: Iterable[CompilationError] = Iterable.empty | ||
) |
12 changes: 12 additions & 0 deletions
12
.../shared/src/main/scala/com/wavesplatform/lang/v1/compiler/CompilationStepResultExpr.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.wavesplatform.lang.v1.compiler | ||
|
||
import com.wavesplatform.lang.v1.compiler.Types.FINAL | ||
import com.wavesplatform.lang.v1.parser.Expressions | ||
|
||
case class CompilationStepResultExpr( | ||
ctx: CompilerContext, | ||
expr: Terms.EXPR, | ||
t: FINAL, | ||
parseNodeExpr: Expressions.EXPR, | ||
errors: Iterable[CompilationError] = Iterable.empty | ||
) |
Oops, something went wrong.