diff --git a/docs/Logos-Syntax.md b/docs/Logos-Syntax.md index 4057278..d14a610 100644 --- a/docs/Logos-Syntax.md +++ b/docs/Logos-Syntax.md @@ -343,6 +343,21 @@ If not specified, the sigil defaults to `-`, evaluating to Class. ```objc %orig(args, …) ``` +```objc +%orig(^{ + ... +}) +``` +```objc +%orig(args, …, ^(id blockArg1) { + ... +}) +``` +```objc +%orig(^(blockArgs, …) { + ... +}) +``` Call the original hooked function or method. Doesn't work in a [%new](#new)'d method.