Changes between Version 1 and Version 2 of OpenModelicaStyleGuide
- Timestamp:
- 2014-09-02T10:04:18Z (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenModelicaStyleGuide
v1 v2 48 48 Prefer using the input parameters directly instead: 49 49 {{{#!mo 50 _:= match(inExp, inStr)50 outStr := match(inExp, inStr) 51 51 case (DAE.CALL(path = Absyn.IDENT("sum")), _) then ExpressionDump.printExpStr(inExp); 52 52 case (_, "someString") then inStr;