Difference between revisions of "Core.Declarations.LocalDeclarations"

From emotive
Jump to navigation Jump to search
Line 13: Line 13:
 
== Semantics ==
 
== Semantics ==
 
=== Constant ===
 
=== Constant ===
The value of a local constant is set at design time and can not be changed at runtime. Local constants are visible only within its own procedure. A constant has a [[OtxDataType|Type]] and a corresponding type value.
+
The value of a local constant is set at design time and can not be changed at runtime. Local constants are visible only within its own procedure. A constant has a [[OtxDataTypes|Type]] and a corresponding type value.
  
 
=== Variable ===
 
=== Variable ===
The value of a local variable can be changed at runtime. Local variables are visible only within its own procedure. A variable has a  [[OtxDataType|Type]] and a corresponding type the initial value (default value).
+
The value of a local variable can be changed at runtime. Local variables are visible only within its own procedure. A variable has a  [[OtxDataTypes|Type]] and a corresponding type the initial value (default value).
  
 
== Checker rules ==
 
== Checker rules ==

Revision as of 12:01, 14 August 2014

Classification

Name Local Declarations
Short Description OTX local declarations data model
Class OTX Core
Pre-Conditions -
Specified by ISO 13209-2

Introduction

In the local declaration block:

  • Constant
  • Variable

can be declared. The local declaration block is located on a procedure level. The declared items can be used within the procedure.

Semantics

Constant

The value of a local constant is set at design time and can not be changed at runtime. Local constants are visible only within its own procedure. A constant has a Type and a corresponding type value.

Variable

The value of a local variable can be changed at runtime. Local variables are visible only within its own procedure. A variable has a Type and a corresponding type the initial value (default value).

Checker rules

Core_Chk009 Mandatory constant initialisation

See also

Validation (OTX-Checker)
​​Naming Conventions
Imports
Visibilities
Validities
Signatures
Parameter Declarations
Procedures
Comments