Skip to content

Commit 259e6c3

Browse files
committed
Update flutter_lints to version 6.0.0
1 parent 9c3dfb5 commit 259e6c3

File tree

69 files changed

+3892
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+3892
-15
lines changed

geocoding_darwin/darwin/geocoding_darwin/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>geocoding-darwin.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>2</integer>
11+
</dict>
12+
<key>geocoding_darwin.xcscheme_^#shared#^_</key>
13+
<dict>
14+
<key>orderHint</key>
15+
<integer>0</integer>
16+
</dict>
17+
</dict>
18+
</dict>
19+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// swift-tools-version: 5.9
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
//
4+
// Generated file. Do not edit.
5+
//
6+
7+
import PackageDescription
8+
9+
let package = Package(
10+
name: "FlutterGeneratedPluginSwiftPackage",
11+
platforms: [
12+
.iOS("12.0")
13+
],
14+
products: [
15+
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
16+
],
17+
dependencies: [
18+
.package(name: "url_launcher_ios", path: "/Users/maurits/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.3/ios/url_launcher_ios"),
19+
.package(name: "integration_test", path: "/Users/maurits/development/flutter/packages/integration_test/ios/integration_test"),
20+
.package(name: "geocoding_darwin", path: "/Users/maurits/sources/Baseflow/Internal/Flutter/geocoding/geocoding_darwin/darwin/geocoding_darwin")
21+
],
22+
targets: [
23+
.target(
24+
name: "FlutterGeneratedPluginSwiftPackage",
25+
dependencies: [
26+
.product(name: "url-launcher-ios", package: "url_launcher_ios"),
27+
.product(name: "integration-test", package: "integration_test"),
28+
.product(name: "geocoding-darwin", package: "geocoding_darwin")
29+
]
30+
)
31+
]
32+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//
2+
// Generated file. Do not edit.
3+
//
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#
2+
# Generated file, do not edit.
3+
#
4+
5+
import lldb
6+
7+
def handle_new_rx_page(frame: lldb.SBFrame, bp_loc, extra_args, intern_dict):
8+
"""Intercept NOTIFY_DEBUGGER_ABOUT_RX_PAGES and touch the pages."""
9+
base = frame.register["x0"].GetValueAsAddress()
10+
page_len = frame.register["x1"].GetValueAsUnsigned()
11+
12+
# Note: NOTIFY_DEBUGGER_ABOUT_RX_PAGES will check contents of the
13+
# first page to see if handled it correctly. This makes diagnosing
14+
# misconfiguration (e.g. missing breakpoint) easier.
15+
data = bytearray(page_len)
16+
data[0:8] = b'IHELPED!'
17+
18+
error = lldb.SBError()
19+
frame.GetThread().GetProcess().WriteMemory(base, data, error)
20+
if not error.Success():
21+
print(f'Failed to write into {base}[+{page_len}]', error)
22+
return
23+
24+
def __lldb_init_module(debugger: lldb.SBDebugger, _):
25+
target = debugger.GetDummyTarget()
26+
# Caveat: must use BreakpointCreateByRegEx here and not
27+
# BreakpointCreateByName. For some reasons callback function does not
28+
# get carried over from dummy target for the later.
29+
bp = target.BreakpointCreateByRegex("^NOTIFY_DEBUGGER_ABOUT_RX_PAGES$")
30+
bp.SetScriptCallbackFunction('{}.handle_new_rx_page'.format(__name__))
31+
bp.SetAutoContinue(True)
32+
print("-- LLDB integration loaded --")
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#
2+
# Generated file, do not edit.
3+
#
4+
5+
command script import --relative-to-command-file flutter_lldb_helper.py
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// This is a generated file; do not edit or check into version control.
2+
FLUTTER_ROOT=/Users/maurits/development/flutter
3+
FLUTTER_APPLICATION_PATH=/Users/maurits/sources/Baseflow/Internal/Flutter/geocoding/geocoding_darwin/example
4+
COCOAPODS_PARALLEL_CODE_SIGN=true
5+
FLUTTER_BUILD_DIR=build
6+
FLUTTER_BUILD_NAME=1.0.0
7+
FLUTTER_BUILD_NUMBER=1
8+
DART_OBFUSCATION=false
9+
TRACK_WIDGET_CREATION=true
10+
TREE_SHAKE_ICONS=false
11+
PACKAGE_CONFIG=.dart_tool/package_config.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// swift-tools-version: 5.9
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
//
4+
// Generated file. Do not edit.
5+
//
6+
7+
import PackageDescription
8+
9+
let package = Package(
10+
name: "FlutterGeneratedPluginSwiftPackage",
11+
platforms: [
12+
.macOS("10.14")
13+
],
14+
products: [
15+
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
16+
],
17+
dependencies: [
18+
.package(name: "url_launcher_macos", path: "/Users/maurits/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.2/macos/url_launcher_macos"),
19+
.package(name: "geocoding_darwin", path: "/Users/maurits/sources/Baseflow/Internal/Flutter/geocoding/geocoding_darwin/darwin/geocoding_darwin")
20+
],
21+
targets: [
22+
.target(
23+
name: "FlutterGeneratedPluginSwiftPackage",
24+
dependencies: [
25+
.product(name: "url-launcher-macos", package: "url_launcher_macos"),
26+
.product(name: "geocoding-darwin", package: "geocoding_darwin")
27+
]
28+
)
29+
]
30+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
//
2+
// Generated file. Do not edit.
3+
//

0 commit comments

Comments
 (0)