Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Titan Test System Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CTI Tools
Titan Test System Framework
Commits
59e6bf48
Commit
59e6bf48
authored
1 year ago
by
YannGarcia
Browse files
Options
Downloads
Patches
Plain Diff
Review typing for MEC 012
parent
163d1cfc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2
Closing TTF T024/025
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ttcn/LibJson/ttcn/Json.ttcn
+21
-4
21 additions, 4 deletions
ttcn/LibJson/ttcn/Json.ttcn
with
21 additions
and
4 deletions
ttcn/LibJson/ttcn/Json.ttcn
+
21
−
4
View file @
59e6bf48
...
...
@@ -51,6 +51,17 @@ module Json {
type
integer
Integer
(
-
infinity
..
infinity
)
/*with {
variant "Json:integer"
}*/
;
// Unsigned Integer type
type
integer
UInteger
(
0
..
infinity
)
/*with {
variant "Json:integer"
}*/
;
// Unsigned char type
type
integer
UInt8
(
0
..
255
)
/*with {
variant "Json:integer"
}*/
;
type
integer
UInt16
(
0
..
65535
)
/*with {
variant "Json:integer"
}*/
;
// String type
type
utf8string
String
/*with {
variant "Json:string"
...
...
@@ -103,11 +114,17 @@ module Json {
}*/
type
record
of
Json
.
Integer
IntArray
;
/*with {
variant "Json:array"
}
type record of Json.
Bool Bool
Array
with {
}
*/
type
record
of
Json
.
UInteger
UInt
Array
;
/*
with {
variant "Json:array"
}
type record of Json.Object ObjArray with {
}*/
type
record
of
Json
.
Bool
BoolArray
;
/*with {
variant "Json:array"
}*/
type
record
of
Json
.
AnyURI
AnyURIArray
;
/*with {
variant "Json:array"
}*/
/*type record of Json.Object ObjArray; with {
variant "Json:array"
}*/
// Object member
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment