mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Revert "Revert "Set SkPath::setIsVolatile based on whether the path survives at least two frames (#22620)" (#23044)" This reverts commit 4f914253bd7cd2a5cca3fd97213df37494e9bf37. * Fix tracing
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;
|
|
}
|