Skip to content

Commit

Permalink
First fix of #88
Browse files Browse the repository at this point in the history
  • Loading branch information
Ole Kroeger committed Dec 24, 2016
1 parent 2747e3f commit 580270c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions main.js
Expand Up @@ -143,8 +143,6 @@ define(function (require, exports, module) {
var FUNCTION_REGEXP_PLUS_NAME = new RegExp(FUNCTION_WO_PARAM_PLUS_NAME.source+FUNCTION_PARAM.source+'|'+FUNCTION_FORM_ES6_PLUS_NAME.source);
var FUNCTION_REGEXP_EXTRA_MATCHES = new RegExp(FUNCTION_WO_PARAM.source+'('+FUNCTION_PARAM.source+')');
var FUNCTION_REGEXP_EXTRA_MATCHES_PLUS_NAME = new RegExp(FUNCTION_WO_PARAM_PLUS_NAME.source+'('+FUNCTION_PARAM.source+')');

console.log(FUNCTION_REGEXP);

var INDENTATION_REGEXP = /^([\t\ ]*)/;

Expand Down Expand Up @@ -343,7 +341,6 @@ define(function (require, exports, module) {
// get the function code and returns (Object)
var codeTypes = getFunctionCodeTypes(editor,position,signature.parameters);
if (codeTypes) {
console.log('throw throws: ',codeTypes.throws);
signature.throws = codeTypes.throws;

signature.returns = codeTypes.returns;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -3,7 +3,7 @@
"title": "FuncDocr",
"description": "Generates JSDoc,PHPDoc annotations for your functions.",
"homepage": "https://github.com/wikunia/brackets-funcdocr",
"version": "0.8.41",
"version": "0.8.42",
"author": "Ole Kröger <o.kroeger@wikunia.de>",
"license": "Creative Commons v3.0",
"engines": {
Expand Down

0 comments on commit 580270c

Please sign in to comment.