// Copyright 2014 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.
/// Measure the performance of path construction.////// This benchmarks was generated by running flutter gallery and recording/// path calls.classBenchPathRecordingextendsRawRecorder{BenchPathRecording():super(name:benchmarkName);staticconstStringbenchmarkName='bench_path_recording';@overrideFuture<void>setUpAll()async{}@overridevoidbody(Profileprofile){profile.record('recordPathConstruction',(){for(inti=1;i<=10;i++){recording.createPaths();}},reported:true);}}