Skip to content

Commit

Permalink
bump dart eval version (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
goflutterjava authored Apr 11, 2022
1 parent a166615 commit 0751db3
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 6 deletions.
30 changes: 30 additions & 0 deletions lib/open/open_api_debug_async.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//

class OpenApiAsyncDebug {
final name = "open async debug";

Future<String> helloWorld() async {
return "helloWorld";
}

Future<String> echo(String str) async {
return str;
}
}
2 changes: 1 addition & 1 deletion lib/open/open_api_debug_sync.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

class OpenApiSyncDebug {
final name = "open debug";
final name = "open sync debug";

String helloWorld() {
return "helloWorld";
Expand Down
10 changes: 6 additions & 4 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,11 @@ packages:
dart_eval:
dependency: "direct main"
description:
name: dart_eval
url: "https://pub.dartlang.org"
source: hosted
path: "."
ref: e1a2f51d09815c22445e0c8698c616ddce046ba5
resolved-ref: e1a2f51d09815c22445e0c8698c616ddce046ba5
url: "https://github.com/ethanblake4/dart_eval.git"
source: git
version: "0.0.4"
dart_style:
dependency: transitive
Expand Down Expand Up @@ -307,7 +309,7 @@ packages:
name: mongo_dart
url: "https://pub.dartlang.org"
source: hosted
version: "0.7.4"
version: "0.7.4+1"
mongo_dart_query:
dependency: transitive
description:
Expand Down
5 changes: 4 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ dependencies:
mysql1: ^0.19.2
redis: ^2.2.0
# eval
dart_eval: ^0.0.4
dart_eval:
git:
url: https://github.com/ethanblake4/dart_eval.git
ref: e1a2f51d09815c22445e0c8698c616ddce046ba5
# mvvm
provider: ^6.0.2
# system
Expand Down

0 comments on commit 0751db3

Please sign in to comment.