Changes between Initial Version and Version 2 of Ticket #5603


Ignore:
Timestamp:
2019-07-25T18:01:51Z (6 years ago)
Author:
Adrian Pop
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5603

    • Property Owner changed from somebody to Adrian Pop
    • Property Priority highcritical
    • Property Status newaccepted
  • Ticket #5603 – Description

    initial v2  
    44`ErrorRecord.mo`
    55
    6 {{{
     6{{{#!mo
    77record ErrorRecord
    8 parameter Boolean someBool = true;
    9 final parameter Real someValue = 0.05;
    10 parameter SimpleRecord simpleRecord(recordValue1 = someValue - simpleRecord.recordValue2);
    11 final parameter Real[1] crash = if true then {1} else array(simpleRecord.recordValue2 for i in 1:1) annotation (Dialog(enable=someBool));
     8  parameter Boolean someBool = true;
     9  final parameter Real someValue = 0.05;
     10  parameter SimpleRecord simpleRecord(recordValue1 = someValue - simpleRecord.recordValue2);
     11  final parameter Real[1] crash = if true then {1} else array(simpleRecord.recordValue2 for i in 1:1) annotation (Dialog(enable=someBool));
    1212end ErrorRecord;
    1313}}}
     
    1616`SimpleRecord.mo`
    1717
    18 {{{
     18{{{#!mo
    1919record SimpleRecord
    20 parameter Real recordValue1 = 1;
    21 parameter Real recordValue2 = 1;
     20  parameter Real recordValue1 = 1;
     21  parameter Real recordValue2 = 1;
    2222end SimpleRecord;
    2323}}}
     
    3131* line 5: Remove `someValue` from the definition of `recordValue`
    3232
    33 Can you reproduce this behaviour? I'm using the new frontend with `d=newInst`
     33Can you reproduce this behaviour? I'm using the new frontend with {{{-d=newInst}}}
    3434
    3535Any help is much appreciated!