Skip to content

3.0.6

Compare
Choose a tag to compare
@github-actions github-actions released this 18 May 09:23
· 6 commits to main since this release
5eb2b07

3.0.6

This update is for 3.0.1 - 3.0.6 merging from preview into stable.

  • (3.0.1) Documentation is now automatically pulled from Greydocs
  • (3.0.1) User-defined variables & functions are now highlighted.
  • (3.0.3) Added some snippets for basic flow control.
  • (3.0.6) Improved the performance of the new semantics provider.
  • (3.0.6) Variables now support comments, and variables assigned to methods will show the return type of that method.
  • (3.0.6) Added JsDoc support! Only @description, @param, @returns, @example, @author, @deprecated, & @readonly are supported at this time. Example:
// Concatinate or add three strings or numbers.
// @description (Why is this a function again?)
// @param a {String|Number} String or number 1
// @param b {String|Number} String or number 2
// @param c {String|Number} String or number 3
// @return {String|Number} The concatination of a, b, and c
// @author WyattL
// @example foo("Hello", " ", "There!") // Hello There!
// @example foo(1,2,5) 
foo = function(a,b,c)
    return a+b+c
end function