Skip to content

Commit

Permalink
fixed missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
k--kato committed Dec 1, 2016
1 parent e447670 commit bef8054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SyntacticAnalysis/SyntacticAnalysisCSharp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class SyntacticAnalysisCSharp {
const hasTypeInfo: boolean = param.match(/[\w\W]+\s+[\w\W]+/) !== null;
let name: RegExpMatchArray = null;
if (hasOptionalParam) {
name = param.match(/\S+\s+(\S+)\s*=.*/)
name = param.match(/\S+\s+(\S+)\s*=.*/);
} else if (hasGenericParam) {
name = null; // SKIP
} else if (!hasTypeInfo) {
Expand Down

0 comments on commit bef8054

Please sign in to comment.