Skip to content
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.

Roadmap

nevada_scout edited this page Mar 13, 2017 · 14 revisions

This is the project roadmap for Crane.

(Items in strikethrough have been released)

0.1.0

  • Basic intellisense/code-completion

0.2.0

  • Instance variable suggestions
  • Caching of workspace tree

0.3.0

  • Implement re-written parser to improve stability and performance

0.3.1

  • Namespace suggestion improvements

0.3.2

  • Basic go-to-definition provider (works for classes, traits + interfaces only)
  • Bug fixes

0.3.3

  • Document symbol provider
  • Workspace symbol provider

0.3.4

  • Support for @var <type> doc comments
  • Add doc comment info to code completion
  • Vastly improve performance of code completion

0.4.0

  • Method signature suggestion provider

0.5.0

  • Full go to definition (variables, functions, methods, properties, ctc)

0.6.0

  • Full go to definition

0.7.0

  • Format line on type
  • Validation provider (remove all need for php cli)

0.8.0

  • PHP doc comment generation
  • Full PHP doc comment support (type hinting, description, return types)
  • Hover provider

0.9.0

  • Find all references

0.3.x

  • Better instance variable support (nested properties, function return values, etc)
  • Additional scope checking (inside if statements, etc)
  • Basic go to definition support on anything that has a position property on the tree (functions, classes, properties, methods, etc)
    • Triggered by F12, Ctrl + click
    • Peek definition
  • Hover provider (show information about symbol under cursor)
  • Signature helper to show parameters for functions and methods
  • Show references (find everywhere a function, class, property or method is used)
  • Workspace/file symbols
  • Basic code analysis
    • If statements set to assignment instead of comparison
    • Unreachable code
    • Variable defined but not used
    • Parameter defined but not used
    • Method/function defined but not used

0.4.0

  • More code analysis
    • Undefined variable
    • Undefined function
    • Undefined class
    • Undefined property
    • Undefined constant
    • Undefined method
  • Basic refactoring
    • Generate any of the undefined items above

0.5.0

  • Support for phpDoc comments (this requires adding this feature to the php-parser library)
  • More refactoring (make use of upcoming right click menu/menu bar items!)
    • Extract method
    • Global rename (variable, property, function, class, method, constant)
    • Change method signature

[...]

1.0.0 Stable

  • Rock solid code-completion
  • Reliable refactoring
  • Useful code analysis