Skip to content

Commit

Permalink
QA: Sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Jun 9, 2018
1 parent d2775cd commit b785995
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
12 changes: 6 additions & 6 deletions src/main/php/lang/ast/CompilingClassloader.class.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php namespace lang\ast;

use lang\XPClass;
use lang\reflect\Package;
use lang\ClassLoader;
use lang\ClassNotFoundException;
use io\streams\MemoryOutputStream;
use lang\ClassFormatException;
use lang\ClassLinkageException;
use lang\ClassLoader;
use lang\ClassLoadingException;
use lang\ClassNotFoundException;
use lang\ElementNotFoundException;
use lang\IllegalStateException;
use text\StreamTokenizer;
use io\streams\MemoryOutputStream;
use lang\XPClass;
use lang\ast\transform\Transformations;
use lang\reflect\Package;
use text\StreamTokenizer;

class CompilingClassLoader implements \lang\IClassLoader {
private static $instance= [];
Expand Down
52 changes: 26 additions & 26 deletions src/main/php/lang/ast/Parse.class.php
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
<?php namespace lang\ast;

use lang\ast\nodes\ClassDeclaration;
use lang\ast\nodes\InterfaceDeclaration;
use lang\ast\nodes\TraitDeclaration;
use lang\ast\nodes\UseExpression;
use lang\ast\nodes\Assignment;
use lang\ast\nodes\BinaryExpression;
use lang\ast\nodes\CaseLabel;
use lang\ast\nodes\CastExpression;
use lang\ast\nodes\FunctionDeclaration;
use lang\ast\nodes\CatchStatement;
use lang\ast\nodes\ClassDeclaration;
use lang\ast\nodes\ClosureExpression;
use lang\ast\nodes\Constant;
use lang\ast\nodes\DoLoop;
use lang\ast\nodes\ForLoop;
use lang\ast\nodes\ForeachLoop;
use lang\ast\nodes\FunctionDeclaration;
use lang\ast\nodes\IfStatement;
use lang\ast\nodes\InstanceExpression;
use lang\ast\nodes\InstanceOfExpression;
use lang\ast\nodes\InterfaceDeclaration;
use lang\ast\nodes\InvokeExpression;
use lang\ast\nodes\LambdaExpression;
use lang\ast\nodes\Method;
use lang\ast\nodes\Constant;
use lang\ast\nodes\Property;
use lang\ast\nodes\NewExpression;
use lang\ast\nodes\NewClassExpression;
use lang\ast\nodes\Assignment;
use lang\ast\nodes\BinaryExpression;
use lang\ast\nodes\UnaryExpression;
use lang\ast\nodes\TernaryExpression;
use lang\ast\nodes\OffsetExpression;
use lang\ast\nodes\InstanceOfExpression;
use lang\ast\nodes\InstanceExpression;
use lang\ast\nodes\NewExpression;
use lang\ast\nodes\NullSafeInstanceExpression;
use lang\ast\nodes\OffsetExpression;
use lang\ast\nodes\Parameter;
use lang\ast\nodes\Property;
use lang\ast\nodes\ScopeExpression;
use lang\ast\nodes\InvokeExpression;
use lang\ast\nodes\YieldExpression;
use lang\ast\nodes\ForLoop;
use lang\ast\nodes\ForeachLoop;
use lang\ast\nodes\WhileLoop;
use lang\ast\nodes\DoLoop;
use lang\ast\nodes\IfStatement;
use lang\ast\nodes\Signature;
use lang\ast\nodes\SwitchStatement;
use lang\ast\nodes\CaseLabel;
use lang\ast\nodes\TernaryExpression;
use lang\ast\nodes\TraitDeclaration;
use lang\ast\nodes\TryStatement;
use lang\ast\nodes\CatchStatement;
use lang\ast\nodes\Signature;
use lang\ast\nodes\Parameter;
use lang\ast\nodes\UnaryExpression;
use lang\ast\nodes\UseExpression;
use lang\ast\nodes\UsingStatement;
use lang\ast\nodes\WhileLoop;
use lang\ast\nodes\YieldExpression;

class Parse {
private $tokens, $file, $token, $scope;
Expand Down

0 comments on commit b785995

Please sign in to comment.