| Index: sdk/lib/web_sql/dart2js/web_sql_dart2js.dart
|
| diff --git a/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart b/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart
|
| index 851be055ed0328e3765ed6e1ad5784a89a0618e4..1fbbb9ad9b3d53e966ca5dbd428902352c65e7b5 100644
|
| --- a/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart
|
| +++ b/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart
|
| @@ -108,20 +108,36 @@ class SqlDatabase native "Database" {
|
| @DomName('SQLError')
|
| class SqlError native "SQLError" {
|
|
|
| + @DomName('SQLError.CONSTRAINT_ERR')
|
| + @DocsEditable
|
| static const int CONSTRAINT_ERR = 6;
|
|
|
| + @DomName('SQLError.DATABASE_ERR')
|
| + @DocsEditable
|
| static const int DATABASE_ERR = 1;
|
|
|
| + @DomName('SQLError.QUOTA_ERR')
|
| + @DocsEditable
|
| static const int QUOTA_ERR = 4;
|
|
|
| + @DomName('SQLError.SYNTAX_ERR')
|
| + @DocsEditable
|
| static const int SYNTAX_ERR = 5;
|
|
|
| + @DomName('SQLError.TIMEOUT_ERR')
|
| + @DocsEditable
|
| static const int TIMEOUT_ERR = 7;
|
|
|
| + @DomName('SQLError.TOO_LARGE_ERR')
|
| + @DocsEditable
|
| static const int TOO_LARGE_ERR = 3;
|
|
|
| + @DomName('SQLError.UNKNOWN_ERR')
|
| + @DocsEditable
|
| static const int UNKNOWN_ERR = 0;
|
|
|
| + @DomName('SQLError.VERSION_ERR')
|
| + @DocsEditable
|
| static const int VERSION_ERR = 2;
|
|
|
| @DomName('SQLError.code')
|
| @@ -141,20 +157,36 @@ class SqlError native "SQLError" {
|
| @DomName('SQLException')
|
| class SqlException native "SQLException" {
|
|
|
| + @DomName('SQLException.CONSTRAINT_ERR')
|
| + @DocsEditable
|
| static const int CONSTRAINT_ERR = 6;
|
|
|
| + @DomName('SQLException.DATABASE_ERR')
|
| + @DocsEditable
|
| static const int DATABASE_ERR = 1;
|
|
|
| + @DomName('SQLException.QUOTA_ERR')
|
| + @DocsEditable
|
| static const int QUOTA_ERR = 4;
|
|
|
| + @DomName('SQLException.SYNTAX_ERR')
|
| + @DocsEditable
|
| static const int SYNTAX_ERR = 5;
|
|
|
| + @DomName('SQLException.TIMEOUT_ERR')
|
| + @DocsEditable
|
| static const int TIMEOUT_ERR = 7;
|
|
|
| + @DomName('SQLException.TOO_LARGE_ERR')
|
| + @DocsEditable
|
| static const int TOO_LARGE_ERR = 3;
|
|
|
| + @DomName('SQLException.UNKNOWN_ERR')
|
| + @DocsEditable
|
| static const int UNKNOWN_ERR = 0;
|
|
|
| + @DomName('SQLException.VERSION_ERR')
|
| + @DocsEditable
|
| static const int VERSION_ERR = 2;
|
|
|
| @DomName('SQLException.code')
|
|
|