This file contains hidden or 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
| interface Function { | |
| Object call(Object argument); | |
| } | |
| interface A { | |
| void set(String object); | |
| String get(); | |
| } | |
| interface B { |
This file contains hidden or 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
| interface = "@interface" _ identifier _ (":" _ identifier)? _ protocols? _ (property / selector)* _ "@end" _ eof | |
| protocols = "<" _ identifier (_ "," _ identifier)* _ ">" | |
| property = "@property" _ attributes? _ type _ pointer? _ identifier _ ";" _ | |
| attributes = "(" _ attribute (_ "," _ attribute)* _ ")" | |
| attribute = getter / identifier | |
| getter = identifier _ "=" _ identifier | |
| selector = ("+" / "-") _ typereference _ (selectorpart+ / identifier) _ ";" _ | |
| selectorpart = identifier _ ":" _ typereference _ identifier _ | |
| typereference = "(" _ type _ pointer? _ ")" | |
| type = list / dict / set / identifier |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>bunkum</title> | |
| <script src="bunkum.js"></script> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |