aboutsummaryrefslogtreecommitdiff
path: root/atom/packages/api-notation/example-syntax.api
diff options
context:
space:
mode:
Diffstat (limited to 'atom/packages/api-notation/example-syntax.api')
-rw-r--r--atom/packages/api-notation/example-syntax.api19
1 files changed, 0 insertions, 19 deletions
diff --git a/atom/packages/api-notation/example-syntax.api b/atom/packages/api-notation/example-syntax.api
deleted file mode 100644
index 8c52870..0000000
--- a/atom/packages/api-notation/example-syntax.api
+++ /dev/null
@@ -1,19 +0,0 @@
-HypotheticalModule <IModuleInterface>
- +staticProperty <String>
- +anotherStaticProperty <Boolean>
- ::toggleAnotherStaticProperty()
- ::setStaticProperty(newValue <String>)
- -instanceProperty <Number>
- -anotherInstanceProperty <String>
- #instanceMethodSync([optionalParameter]<Boolean>) => resultOfCall <String>
- #instanceMethodAsync(someValue <Number>, [callback] <Function>) ->(error <String|null>, result <Number|null>)
-
-
-// Comment
-EventHypotheticalClass
- +>AnotherClass<+staticEventToListen(eventData <PredefinedObject>) // More Comments
- <+staticEventDispatched(someData <SomeData>)
- ~>listenedSocketEvent(eventData <SomeObject>)
- <~dispatchedSocketEvent(eventData <BlaBla>)
- ->AnotherClass<-instanceEventToListen(eventData <Object>)
- <-instanceEventDispatched(specificDataType <DefinedObject>)