Skip to content

Commit

Permalink
Merge 7e2b618 into 68b7b34
Browse files Browse the repository at this point in the history
  • Loading branch information
esdrubal authored Aug 6, 2024
2 parents 68b7b34 + 7e2b618 commit 204ebcd
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl ty::TyIntrinsicFunctionKind {
type_check_contract_ret(handler, ctx, kind, arguments, type_arguments, span)
}
Intrinsic::EncodeBufferEmpty => {
type_check_encode_buffer_empty(ctx, kind, arguments, type_arguments, span)
type_check_encode_buffer_empty(handler, ctx, kind, arguments, type_arguments, span)
}
Intrinsic::EncodeBufferAppend => {
type_check_encode_append(handler, ctx, kind, arguments, type_arguments, span)
Expand Down Expand Up @@ -156,13 +156,20 @@ fn new_encoding_buffer_tuple(
}

fn type_check_encode_buffer_empty(
handler: &Handler,
ctx: TypeCheckContext,
kind: sway_ast::Intrinsic,
arguments: &[Expression],
_type_arguments: &[TypeArgument],
span: Span,
) -> Result<(ty::TyIntrinsicFunctionKind, TypeId), ErrorEmitted> {
assert!(arguments.is_empty());
if !arguments.is_empty() {
return Err(handler.emit_err(CompileError::IntrinsicIncorrectNumArgs {
name: kind.to_string(),
expected: 0,
span,
}));
}

let type_engine = ctx.engines.te();
let engines = ctx.engines();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[[package]]
name = "core"
source = "path+from-root-BABDDF1B461AF6DA"

[[package]]
name = "encode_buffer_empty_with_args"
source = "member"
dependencies = ["core"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
authors = ["Fuel Labs <contact@fuel.sh>"]
license = "Apache-2.0"
name = "encode_buffer_empty_with_args"
entry = "main.sw"

[dependencies]
core = { path = "../../../../../../sway-lib-core" }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
library;

struct Buffer {
buffer: (raw_ptr, u64, u64),
}

impl Buffer {
pub fn new() -> Self {
Buffer {
buffer: __encode_buffer_empty(self),
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
category = "fail"

# check: $()buffer: __encode_buffer_empty(self),
# nextln: $()Call to "encode_buffer_empty" expects 0 arguments

0 comments on commit 204ebcd

Please sign in to comment.