| 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 3608d4c5018be30ccfa6dc53e7dd8f24f11c0e84..57a3f17207551e4fa89346a6d0282ea1668b0800 100644
|
| --- a/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart
|
| +++ b/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart
|
| @@ -171,57 +171,6 @@ class SqlError extends Interceptor native "SQLError" {
|
|
|
|
|
| @DocsEditable()
|
| -@DomName('SQLException')
|
| -// http://www.w3.org/TR/webdatabase/#sqlexception
|
| -@Experimental() // deprecated
|
| -class SqlException extends Interceptor 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')
|
| - @DocsEditable()
|
| - final int code;
|
| -
|
| - @DomName('SQLException.message')
|
| - @DocsEditable()
|
| - final String message;
|
| -}
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -
|
| -@DocsEditable()
|
| @DomName('SQLResultSet')
|
| // http://www.w3.org/TR/webdatabase/#sqlresultset
|
| @Experimental() // deprecated
|
|
|