Skip to content

Commit

Permalink
Syntax error fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
aduros committed Mar 11, 2013
1 parent ae137ea commit b984a15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/flambe/server/Node.hx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Node
throw untyped __js__("new Error")(message);
}

inline private static function get_require () return untyped __js__("require")
inline private static function get_console () return untyped __js__("console")
inline private static function get_process () return untyped __js__("process")
inline private static function get_require () return untyped __js__("require");
inline private static function get_console () return untyped __js__("console");
inline private static function get_process () return untyped __js__("process");
}

0 comments on commit b984a15

Please sign in to comment.