Skip to content

Commit ff6699d

Browse files
committed
LCB: Use "Pointer" instead of "pointer".
1 parent 81a4c27 commit ff6699d

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

libscript/src/array.mlc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ public foreign handler MCArrayStoreElementOfCaseless(in Value as optional any, i
3737

3838
public foreign handler MCArrayEvalEmpty(out Value as array) as undefined binds to "<builtin>"
3939

40-
public foreign handler MCArrayRepeatForEachElement(inout Iterator as optional pointer, out Iterand as optional any, in Container as array) as bool binds to "<builtin>"
41-
public foreign handler MCArrayRepeatForEachKey(inout Iterator as optional pointer, out Iterand as string, in Container as array) as bool binds to "<builtin>"
40+
public foreign handler MCArrayRepeatForEachElement(inout Iterator as optional Pointer, out Iterand as optional any, in Container as array) as bool binds to "<builtin>"
41+
public foreign handler MCArrayRepeatForEachKey(inout Iterator as optional Pointer, out Iterand as string, in Container as array) as bool binds to "<builtin>"
4242

4343
public foreign handler MCArrayDeleteElementOfCaseless(inout Target as array, in Key as string) as undefined binds to "<builtin>"
4444

@@ -357,4 +357,4 @@ begin
357357
MCArrayRepeatForEachKey(iterator, Iterand, container)
358358
end syntax
359359

360-
end module
360+
end module

libscript/src/byte.mlc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public foreign handler MCByteStoreByteOf(in Value as data, in Index as index, in
4040
public foreign handler MCByteFetchByteRangeOf(in Start as index, in Finish as index, in Target as data, out Value as data) as undefined binds to "<builtin>"
4141
public foreign handler MCByteStoreByteRangeOf(in Value as data, in Start as index, in Finish as index, inout Target as data) as undefined binds to "<builtin>"
4242

43-
public foreign handler MCByteRepeatForEachByte(inout Iterator as optional pointer, out Iterand as data, in Container as data) as bool binds to "<builtin>"
43+
public foreign handler MCByteRepeatForEachByte(inout Iterator as optional Pointer, out Iterand as data, in Container as data) as bool binds to "<builtin>"
4444

4545
public foreign handler MCByteFetchFirstByteOf(in Target as data, out Value as data) as undefined binds to "<builtin>"
4646
public foreign handler MCByteStoreFirstByteOf(in Value as data, inout Target as data) as undefined binds to "<builtin>"
@@ -429,4 +429,4 @@ end syntax
429429

430430
--
431431

432-
end module
432+
end module

libscript/src/char.mlc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public foreign handler MCCharEvalEndsWith(in Source as string, in Suffix as stri
4444

4545
public foreign handler MCCharEvalNewlineCharacter(out Value as string) as undefined binds to "<builtin>"
4646

47-
public foreign handler MCCharRepeatForEachChar(inout Iterator as optional pointer, out Iterand as string, in Container as string) as bool binds to "<builtin>"
47+
public foreign handler MCCharRepeatForEachChar(inout Iterator as optional Pointer, out Iterand as string, in Container as string) as bool binds to "<builtin>"
4848

4949
public foreign handler MCCharFetchFirstCharOf(in Target as string, out Value as string) as undefined binds to "<builtin>"
5050
public foreign handler MCCharStoreFirstCharOf(in Value as string, inout Target as string) as undefined binds to "<builtin>"
@@ -554,4 +554,4 @@ begin
554554
MCCharRepeatForEachChar(iterator, Iterand, container)
555555
end syntax
556556

557-
end module
557+
end module

libscript/src/list.mlc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public foreign handler MCListSpliceAfter(in Source as list, inout Target as list
6060

6161
public foreign handler MCListEvalEmpty(out Value as list) as undefined binds to "<builtin>"
6262

63-
public foreign handler MCListRepeatForEachElement(inout Iterator as optional pointer, out Iterand as optional any, in Container as list) as bool binds to "<builtin>"
63+
public foreign handler MCListRepeatForEachElement(inout Iterator as optional Pointer, out Iterand as optional any, in Container as list) as bool binds to "<builtin>"
6464

6565
public foreign handler MCListFetchFirstElementOf(in Target as list, out Value as optional any) as undefined binds to "<builtin>"
6666
public foreign handler MCListStoreFirstElementOf(in Value as optional any, inout Target as list) as undefined binds to "<builtin>"

0 commit comments

Comments
 (0)