Browse Source

Formatting.

Herby Vojčík 4 years ago
parent
commit
752127ddfe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lang/base/parser.pegjs

+ 1 - 1
lang/base/parser.pegjs

@@ -159,7 +159,7 @@ assignment = variable:variable ws ':=' ws expression:expression {
 ret = '^' ws expression:expression {
 	return newNode($globals.ReturnNode)._dagChildren_([expression]);
 }
-  
+
 temps = '|' vars:(ws variable:identifier {return variable;})* ws '|' {
 	return vars;
 }