Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:EGL Language Literals"

(New page: Please see the parent of this page, EDT:EGL_Language. == Literals (Table 6) == {| width="400" cellspacing="1" cellpadding="1" border="1" style="" |- | bgcolor="#999999" align="cente...)
 
Line 25: Line 25:
 
| bgcolor="#cccccc" | ''integer<sup>2</sup>''  
 
| bgcolor="#cccccc" | ''integer<sup>2</sup>''  
 
| <br>  
 
| <br>  
| <br>  
+
| done<br>  
 
| <br>  
 
| <br>  
 
| <br>
 
| <br>
Line 31: Line 31:
 
| bgcolor="#cccccc" | ''fixed-decimal<sup>3</sup>''  
 
| bgcolor="#cccccc" | ''fixed-decimal<sup>3</sup>''  
 
| <br>  
 
| <br>  
| <br>  
+
| done<br>  
 
| <br>  
 
| <br>  
 
| <br>
 
| <br>
Line 37: Line 37:
 
| bgcolor="#cccccc" | ''floating point''  
 
| bgcolor="#cccccc" | ''floating point''  
 
| <br>  
 
| <br>  
| <br>  
+
| done<br>  
 
| <br>  
 
| <br>  
 
| <br>
 
| <br>
Line 43: Line 43:
 
| bgcolor="#cccccc" | ''string<sup>4</sup>''  
 
| bgcolor="#cccccc" | ''string<sup>4</sup>''  
 
| <br>  
 
| <br>  
| <br>  
+
| done<br>(see this [https://bugs.eclipse.org/bugs/show_bug.cgi?id=347208 IR bug])<br>
| <br>  
+
|
 
| <br>
 
| <br>
 
|-
 
|-

Revision as of 16:52, 13 July 2011

Please see the parent of this page, EDT:EGL_Language.

Literals (Table 6)

Literals Core JavaScript Java Debug
null



boolean1



integer2
done


fixed-decimal3
done


floating point
done


string4
done
(see this IR bug)

bytes5



array



char
N/S N/S N/S
mbchar
N/S N/S N/S
dbchar
N/S N/S N/S
hex
N/S N/S N/S

Notes on Table 6

  1. As in RBD, there are four boolean literals: true false yes no
  2. Integer literals have 1-32 digits, an optional leading sign, and no decimal point. The type of the literal depends on the value. If the value fits in a smallint, then the type is smallint. If the value doesn't fit in a smallint but it does fit in an int, then the type is int. Similarly for bigint. If the value is too large for a bigint, then the type is decimal(X), where X is the number of digits in the value.
  3. Fixed-decimal literals have 1-32 digits, an optional leading sign, and a decimal point. At least one digit must follow the decimal point, but it's permissible to have no digits before the decimal point. The type of a fixed-decimal literal is decimal(X,Y), where X is the total number of digits and Y is the number of digits to the right of the decimal point.
  4. String literals are enclosed in double quotes. An optional ux prefix may appear before the opening double quote. The ux prefix means the string is defined as Unicode codepoints in hexadecimal. For example "012" and ux"003000310032" have the same value. The letters u and x may be in any case.
  5. A bytes literal is written as 0x or 0X followed by an even number of hexadecimal digits. For example 0x03AB is a literal whose type is bytes(2).

Back to the top