mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Reland path volatility tracker (#23063)" (#23220) This reverts commit fceef3aaa9d156e8ec3f4a079c142921882f70d8. * allow disabling based on whether deterministic rendering is needed
12 lines
246 B
Dart
12 lines
246 B
Dart
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// @dart=2.10
|
|
|
|
library splitlib;
|
|
|
|
int splitAdd(int i, int j) {
|
|
return i + j;
|
|
}
|