dart-native / codegen

Generator for dart_native bindings. Codegen can transform native SDK to Flutter plugin.
BSD 3-Clause "New" or "Revised" License
79 stars 3 forks source link

Parse API_AVAILABLE etc. #9

Closed yulingtianxia closed 4 years ago

yulingtianxia commented 4 years ago

Sample Code:

API_AVAILABLE(macos(10.11), ios(9.0), watchos(2.0), tvos(9.0));

API_DEPRECATED("Use -foo instead.", macos(10.0,10.11), ios(2.0,9.0), watchos(2.0,2.0), tvos(9.0,9.0));

API_UNAVAILABLE(ios, watchos, tvos);
  1. [x] Not crash.
  2. [x] Save info to context.
  3. [x] Output dart code.