eerolanguage / eero

Eero was a fully binary- and header-compatible dialect of Objective-C, implemented with a modified version of the Apple-sponsored LLVM/clang open-source compiler. It featured a streamlined syntax, Python-like indentation, and other features that improve readability and code safety. It was inspired by languages such as Smalltalk, Python, and Ruby.
https://web.archive.org/web/20171101134337/http://eerolanguage.org/
288 stars 7 forks source link

Consider adding compatibility mechanism using @interface/@end #34

Closed andyarvanitis closed 11 years ago

andyarvanitis commented 12 years ago

Currently, system headers are parsed in "compatibility" mode (interpreted as standard C/ObjC). Consider also recognizing @interface/@end blocks (with '@' in keywords) as well. It might also be desirable to support @implementation/@end.

andyarvanitis commented 11 years ago

Mostly superseded by #import "header.h" and #import 'header.h' mechanism.