Skip to content

Commit

Permalink
Adding built-in interfaces to completions
Browse files Browse the repository at this point in the history
  • Loading branch information
joshvarner authored and Josh Varner committed Feb 6, 2012
1 parent f778292 commit b4190a6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Preferences/Completions.tmPreferences
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<string>AMQPQueue</string> <string>AMQPQueue</string>
<string>APCIterator</string> <string>APCIterator</string>
<string>AppendIterator</string> <string>AppendIterator</string>
<string>ArrayAccess</string>
<string>ArrayIterator</string> <string>ArrayIterator</string>
<string>ArrayObject</string> <string>ArrayObject</string>
<string>BadFunctionCallException</string> <string>BadFunctionCallException</string>
Expand Down Expand Up @@ -82,6 +83,8 @@
<string>InfiniteIterator</string> <string>InfiniteIterator</string>
<string>IntlDateFormatter</string> <string>IntlDateFormatter</string>
<string>InvalidArgumentException</string> <string>InvalidArgumentException</string>
<string>Iterator</string>
<string>IteratorAggregate</string>
<string>IteratorIterator</string> <string>IteratorIterator</string>
<string>JDDayOfWeek</string> <string>JDDayOfWeek</string>
<string>JDMonthName</string> <string>JDMonthName</string>
Expand Down Expand Up @@ -185,6 +188,7 @@
<string>SQLiteResult</string> <string>SQLiteResult</string>
<string>SQLiteUnbuffered</string> <string>SQLiteUnbuffered</string>
<string>SeekableIterator</string> <string>SeekableIterator</string>
<string>Serializable</string>
<string>SimpleXMLElement</string> <string>SimpleXMLElement</string>
<string>SimpleXMLIterator</string> <string>SimpleXMLIterator</string>
<string>SoapClient</string> <string>SoapClient</string>
Expand Down Expand Up @@ -220,6 +224,7 @@
<string>TokyoTyrant</string> <string>TokyoTyrant</string>
<string>TokyoTyrantQuery</string> <string>TokyoTyrantQuery</string>
<string>TokyoTyrantTable</string> <string>TokyoTyrantTable</string>
<string>Traversable</string>
<string>UnderflowException</string> <string>UnderflowException</string>
<string>UnexpectedValueException</string> <string>UnexpectedValueException</string>
<string>XMLReader</string> <string>XMLReader</string>
Expand Down
12 changes: 12 additions & 0 deletions Support/generate/generate.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -324,6 +324,18 @@ function parseInfo($info)


$classes = array( $classes = array(
'stdClass', 'stdClass',
'Traversable',
'IteratorAggregate',
'Iterator',
'ArrayAccess',
'Serializable',
'RecursiveIterator',
'OuterIterator',
'Countable',
'SeekableIterator',
'SplObserver',
'SplSubject',
'Reflector',
'ErrorException', 'ErrorException',
'Exception', 'Exception',
'LogicException', 'LogicException',
Expand Down

0 comments on commit b4190a6

Please sign in to comment.