zig/test/cases/this.zig

44 lines
751 B
Zig
Raw Normal View History

2017-01-05 00:57:48 -08:00
const assert = @import("std").debug.assert;
const module = this;
fn Point(comptime T: type) type {
return struct {
2016-12-21 22:20:08 -08:00
const Self = this;
x: T,
y: T,
fn addOne(self: *Self) void {
2016-12-21 22:20:08 -08:00
self.x += 1;
self.y += 1;
}
};
}
fn add(x: i32, y: i32) i32 {
return x + y;
}
fn factorial(x: i32) i32 {
const selfFn = this;
return if (x == 0) 1 else x * selfFn(x - 1);
}
2017-05-23 18:38:31 -07:00
test "this refer to module call private fn" {
assert(module.add(1, 2) == 3);
}
2017-05-23 18:38:31 -07:00
test "this refer to container" {
2018-05-28 17:23:55 -07:00
var pt = Point(i32){
.x = 12,
.y = 34,
};
pt.addOne();
assert(pt.x == 13);
assert(pt.y == 35);
}
2017-05-23 18:38:31 -07:00
test "this refer to fn" {
assert(factorial(5) == 120);
}