Mercurial > hg > isophonics-drupal-site
comparison vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 5fb285c0d0e3 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
4 | 4 |
5 use PhpParser\Node\Expr\Cast; | 5 use PhpParser\Node\Expr\Cast; |
6 | 6 |
7 class Double extends Cast | 7 class Double extends Cast |
8 { | 8 { |
9 // For use in "kind" attribute | |
10 const KIND_DOUBLE = 1; // "double" syntax | |
11 const KIND_FLOAT = 2; // "float" syntax | |
12 const KIND_REAL = 3; // "real" syntax | |
13 | |
9 public function getType() : string { | 14 public function getType() : string { |
10 return 'Expr_Cast_Double'; | 15 return 'Expr_Cast_Double'; |
11 } | 16 } |
12 } | 17 } |