Changes between Initial Version and Version 2 of Ticket #2107
- Timestamp:
- 2013-03-07T10:13:20Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2107
- Property Component Backend → Frontend
- Property Owner changed from to
-
Ticket #2107 – Description
initial v2 3 3 Example follows. This compiles and runs fine, it should error out. 4 4 5 {{{ #mo5 {{{ 6 6 class protectedvar 7 8 7 class Container 9 8 protected 10 9 Boolean youcanttouchthis (start = true); 11 10 Real youcanttouchthat; 12 13 11 end Container; 14 12 15 13 Container container; 16 17 14 algorithm 18 15 container.youcanttouchthis := false; 19 20 16 equation 21 17 container.youcanttouchthat = 0; 22 23 18 end protectedvar; 24 19 }}}