Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
titan.EclipsePlug-ins
Manage
Activity
Members
Labels
Plan
Issues
91
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse Titan
titan.EclipsePlug-ins
Merge requests
!830
OOP: added property default value type checking
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
OOP: added property default value type checking
propdefchk
into
master
Overview
0
Commits
1
Changes
4
Merged
Miklos Magyari
requested to merge
propdefchk
into
master
3 years ago
Overview
0
Commits
1
Changes
4
Expand
Signed-off-by: Miklos Magyari
miklos.magyari@sigmatechnology.se
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
65cd635c
1 commit,
3 years ago
4 files
+
31
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Semantic_Analizer_Tests/src/Basic_tests/OopNegativeSemanticTest.ttcn
+
7
−
0
Options
@@ -450,6 +450,13 @@ type class PropertyClass {
return
1
;
}
}
// property with default value
private
var
octetstring
os
;
var
octetstring
@
property
defValProp
:=
'AB'H
{
// default value type mismatch
@
set
=>
os
:=
value
;
@
get
=>
os
;
};
}
// raise exception
Loading