Compare commits
15 Commits
e16278ba5a
...
0caebaad14
| Author | SHA1 | Date | |
|---|---|---|---|
| 0caebaad14 | |||
| bd7196770f | |||
| 613d9940c5 | |||
| b991f35f1f | |||
| f94d62c2bc | |||
| 579848648e | |||
| 42968e63d5 | |||
| 8344803798 | |||
| 018a8567dc | |||
| de00beaaaf | |||
| d500f5c6c2 | |||
| c751c5f967 | |||
| 85c4fb0d90 | |||
| 7193e73c2a | |||
| c5957edf4f |
@@ -1,7 +1,4 @@
|
|||||||
<code_scheme name="Default (1)" version="173">
|
<code_scheme name="Default (1)" version="173">
|
||||||
<codeStyleSettings language="Dart">
|
|
||||||
<option name="RIGHT_MARGIN" value="120" />
|
|
||||||
</codeStyleSettings>
|
|
||||||
<codeStyleSettings language="XML">
|
<codeStyleSettings language="XML">
|
||||||
<option name="FORCE_REARRANGE_MODE" value="1" />
|
<option name="FORCE_REARRANGE_MODE" value="1" />
|
||||||
<indentOptions>
|
<indentOptions>
|
||||||
|
|||||||
+35
-35
@@ -1,9 +1,41 @@
|
|||||||
<application>
|
<application>
|
||||||
<component name="Translation.Cache">
|
<component name="Translation.Cache">
|
||||||
<option name="lastTrimTime" value="1686305738173" />
|
<option name="lastTrimTime" value="1687436735883" />
|
||||||
</component>
|
</component>
|
||||||
<component name="Translation.States">
|
<component name="Translation.States">
|
||||||
<histories>
|
<histories>
|
||||||
|
<item value="优化警告信息" />
|
||||||
|
<item value="请再次运行build runner" />
|
||||||
|
<item value="run" />
|
||||||
|
<item value="请重新运行build runner" />
|
||||||
|
<item value="refactor platform_generator according to https:github.comdart-langsdkissues34539issuecomment-423589192" />
|
||||||
|
<item value="Return the semicolon terminating the directive." />
|
||||||
|
<item value="Creates a sorted list of the elements of the iterable. The elements are ordered by the natural ordering of the property [keyOf] of the element." />
|
||||||
|
<item value="warning when import origin platform code source file directly." />
|
||||||
|
<item value="use lakos to warning when import origin platform code source file directly." />
|
||||||
|
<item value="Return a list containing all of the directives and declarations in this compilation unit, sorted in lexical order." />
|
||||||
|
<item value="Return the script tag at the beginning of the compilation unit, or `null` if there is no script tag in this compilation unit." />
|
||||||
|
<item value="Return the directives contained in this compilation unit." />
|
||||||
|
<item value="AST structure has not been resolved." />
|
||||||
|
<item value="Return the declarations contained in this compilation unit." />
|
||||||
|
<item value="A compilation unit. While the grammar restricts the order of the directives and declarations within a compilation unit, this class does not enforce those restrictions. In particular, the children of a compilation unit will be visited in lexical order even if lexical order does not conform to the restrictions of the grammar. compilationUnit ::= directives declarations directives ::= [ScriptTag]? [LibraryDirective]? namespaceDirective [PartDirective] | [PartOfDirective] namespaceDirective ::= [ImportDirective] | [ExportDirective] declarations ::= [CompilationUnitMember] Clients may not extend, implement or mix-in this class." />
|
||||||
|
<item value="Return a textual description of this node in a form approximating valid source. The returned string will not be valid source primarily in the case where the node itself is not well-formed." />
|
||||||
|
<item value="compute" />
|
||||||
|
<item value="An AST visitor that will recursively visit all of the nodes in an AST structure. For example, using an instance of this class to visit a [Block] will also cause all of the statements in the block to be visited. Subclasses that override a visit method must either invoke the overridden visit method or must explicitly ask the visited node to visit its children. Failure to do so will cause the children of the visited node to not be visited. Clients may extend this class." />
|
||||||
|
<item value="[WARN] Do not import [libcurrent_platform.dart] directly in [libmain.dart], use [libcurrent_platform.p.dart] instead!" />
|
||||||
|
<item value="subtract" />
|
||||||
|
<item value="Extend this type to create a [Generator] that invokes [generateForAnnotatedElement] for every top level element in the source file annotated with [T]. When all annotated elements have been processed, the results will be combined into a single output with duplicate items collapsed. For example, this will allow code generated for all top level elements which are annotated with `@Deprecated`: ```dart class DeprecatedGenerator extends GeneratorForAnnotation<Deprecated> { @override Future<String> generateForAnnotatedElement( Element element, ConstantReader annotation, BuildStep buildStep) async { Return a string representing the code to emit. } } ``` Elements which are not at the top level, such as the members of a class or extension, are not searched for annotations. To operate on, for instance, annotated fields of a class ensure that the class itself is annotated with [T] and use the [Element] to iterate over fields. The [TypeChecker] utility may be helpful to check which elements have a given annotation." />
|
||||||
|
<item value="Computes the set of features for the latest language version known to the analyzer, without any experiments. Use it only if you really don't care which language version you want to use, and sure that the code that you process is valid for the latest language version. Otherwise, it is recommended to use [FeatureSet.fromEnableFlags2]." />
|
||||||
|
<item value="Return the result of parsing the file at the given [path]. If a [resourceProvider] is given, it will be used to access the file system. [featureSet] determines what set of features will be assumed by the parser. This parameter is required because the analyzer does not yet have a performant way of computing the correct feature set for a single file to be parsed. Callers that need the feature set to be strictly correct must create an [AnalysisContextCollection], query it to get an [AnalysisContext], query it to get an [AnalysisSession], and then call `getParsedUnit`. Callers that don't need the feature set to be strictly correct can pass in `FeatureSet.latestLanguageVersion()` to enable the default set of features; this is much more performant than using an analysis session, because it doesn't require the analyzer to process the SDK. If [throwIfDiagnostics] is `true` (the default), then if any diagnostics are produced because of syntactic errors in the file an `ArgumentError` will be thrown. If the parameter is `false`, then the caller can check the result to see whether there are any errors." />
|
||||||
|
<item value="Return the result of resolving the file at the given [path]. If a [resourceProvider] is given, it will be used to access the file system. Note that if more than one file is going to be resolved then this function is inefficient. Clients should instead use [AnalysisContextCollection] to create one or more contexts and use those contexts to resolve the files." />
|
||||||
|
<item value="A consistent view of the results of analyzing one or more files. The methods in this class that return analysis results will throw an [InconsistentAnalysisException] if the result to be returned might be inconsistent with any previously returned results. Clients may not extend, implement or mix-in this class." />
|
||||||
|
<item value="Return a future that will complete with information about the results of resolving all of the files in the library with the library [element]. Throw [ArgumentError] if the [element] was not produced by this session." />
|
||||||
|
<item value="The external names referenced by the file." />
|
||||||
|
<item value="Data structure output by PackageMapProvider. This contains both the package map and dependency information." />
|
||||||
|
<item value="A [UriResolver] implementation for the `package:` scheme that uses a map of package names to their directories." />
|
||||||
|
<item value="Information about a file being analyzed, explicitly or implicitly. It provides a consistent view on its properties. The properties are not guaranteed to represent the most recent state of the file system. To update the file to the most recent state, [refresh] should be called." />
|
||||||
|
<item value="A visitor used to traverse the AST structures of all of the compilation units being resolved and build the full set of dependencies for all constant expressions." />
|
||||||
|
<item value="visit Library Directive" />
|
||||||
<item value="Returns the result of parsing the given [content] as a compilation unit. If a [featureSet] is provided, it will be the default set of features that will be assumed by the parser. If a [path] is provided, it will be used as the name of the file when reporting errors. If [throwIfDiagnostics] is `true` (the default), then if any diagnostics are produced because of syntactic errors in the [content] an `ArgumentError` will be thrown. This behavior is not intended as a way for the client to find out about errors--it is intended to avoid causing problems for naive clients that might not be thinking about the possibility of parse errors (and might therefore make assumptions about the returned AST that don't hold in the presence of parse errors). Clients interested in details about parse errors should pass `false` and check `result.errors` to determine what parse errors, if any, have occurred." />
|
<item value="Returns the result of parsing the given [content] as a compilation unit. If a [featureSet] is provided, it will be the default set of features that will be assumed by the parser. If a [path] is provided, it will be used as the name of the file when reporting errors. If [throwIfDiagnostics] is `true` (the default), then if any diagnostics are produced because of syntactic errors in the [content] an `ArgumentError` will be thrown. This behavior is not intended as a way for the client to find out about errors--it is intended to avoid causing problems for naive clients that might not be thinking about the possibility of parse errors (and might therefore make assumptions about the returned AST that don't hold in the presence of parse errors). Clients interested in details about parse errors should pass `false` and check `result.errors` to determine what parse errors, if any, have occurred." />
|
||||||
<item value="Platform Detector" />
|
<item value="Platform Detector" />
|
||||||
<item value="Returns the least significant [width] bits of this integer, extending the highest retained bit to the sign. This is the same as truncating the value to fit in [width] bits using an signed 2-s complement representation. The returned value has the same bit value in all positions higher than [width]." />
|
<item value="Returns the least significant [width] bits of this integer, extending the highest retained bit to the sign. This is the same as truncating the value to fit in [width] bits using an signed 2-s complement representation. The returned value has the same bit value in all positions higher than [width]." />
|
||||||
@@ -22,43 +54,11 @@
|
|||||||
<item value="exit the monitor page after no server information is received for more than one minute;" />
|
<item value="exit the monitor page after no server information is received for more than one minute;" />
|
||||||
<item value="超过一分钟没有接收到服务器信息,则自动退出监控页面" />
|
<item value="超过一分钟没有接收到服务器信息,则自动退出监控页面" />
|
||||||
<item value="NO STATUS RECEIVED" />
|
<item value="NO STATUS RECEIVED" />
|
||||||
<item value="RESERVED_1004" />
|
|
||||||
<item value="PROTOCOL ERROR" />
|
|
||||||
<item value="UNSUPPORTED DATA" />
|
|
||||||
<item value="GOING AWAY" />
|
|
||||||
<item value="RESERVED_1015" />
|
|
||||||
<item value="INTERNAL SERVER ERROR" />
|
|
||||||
<item value="MISSING MANDATORY EXTENSION" />
|
|
||||||
<item value="MESSAGE TOO BIG" />
|
|
||||||
<item value="POLICY VIOLATION" />
|
|
||||||
<item value="INVALID FRAME PAYLOAD DATA" />
|
|
||||||
<item value="ABNORMAL CLOSURE" />
|
|
||||||
<item value="NORMAL CLOSURE" />
|
|
||||||
<item value="static const int NORMAL_CLOSURE = 1000; static const int GOING_AWAY = 1001; static const int PROTOCOL_ERROR = 1002; static const int UNSUPPORTED_DATA = 1003; static const int RESERVED_1004 = 1004; static const int NO_STATUS_RECEIVED = 1005; static const int ABNORMAL_CLOSURE = 1006; static const int INVALID_FRAME_PAYLOAD_DATA = 1007; static const int POLICY_VIOLATION = 1008; static const int MESSAGE_TOO_BIG = 1009; static const int MISSING_MANDATORY_EXTENSION = 1010; static const int INTERNAL_SERVER_ERROR = 1011; static const int RESERVED_1015 = 1015;" />
|
|
||||||
<item value="Creates a new WebSocket connection. Connects to [uri] using and returns a channel that can be used to communicate over the resulting socket. The optional [protocols] parameter is the same as `WebSocket.connect`." />
|
|
||||||
<item value="Whether this [Duration] has the same length as [other]. Durations have the same length if they have the same number of microseconds, as reported by [inMicroseconds]." />
|
|
||||||
<item value="What kind of friends are you looking to meet? You can briefly describe your hobbies or interests for conversation topics, and I can try to find potential friends that you may connect with." />
|
|
||||||
<item value="they" />
|
|
||||||
<item value="Recomand Friend" />
|
|
||||||
<item value="fix: wrong onTap ussage." />
|
|
||||||
<item value="is Auto Generated" />
|
|
||||||
<item value="The child can be at most as large as the available space (but is allowed to be smaller)." />
|
|
||||||
<item value="The child is forced to fill the available space." />
|
|
||||||
<item value="The [Flexible] widget assigns this kind of [FlexFit] to its child." />
|
|
||||||
<item value="The [Expanded] widget assigns this kind of [FlexFit] to its child." />
|
|
||||||
<item value="A widget that sizes its child to the child's intrinsic height. This class is useful, for example, when unlimited height is available and you would like a child that would otherwise attempt to expand infinitely to instead size itself to a more reasonable height. The constraints that this widget passes to its child will adhere to the parent's constraints, so if the constraints are not large enough to satisfy the child's maximum intrinsic height, then the child will get less height than it otherwise would. Likewise, if the minimum height constraint is larger than the child's maximum intrinsic height, the child will be given more height than it otherwise would. This class is relatively expensive, because it adds a speculative layout pass before the final layout phase. Avoid using it where possible. In the worst case, this widget can result in a layout that is O(N²) in the depth of the tree." />
|
|
||||||
<item value="remove Material Icons font to reduce deb package size." />
|
|
||||||
<item value="Load Device's Contexts from the iOS SDK. This integration calls the iOS SDK via Message channel to load the Device's contexts before sending the event back to the iOS SDK via Message channel (already enriched with all the information). The Device's contexts are: App, Device and OS. ps. This integration won't be run on Android because the Device's Contexts is set on Android when the event is sent to the Android SDK via the Message channel. We intend to unify this behaviour in the future. This integration is only executed on iOS & MacOS Apps." />
|
|
||||||
<item value="Integration which handles communication with native frameworks in order to enrich [SentryTransaction] objects with app start data for mobile vitals." />
|
|
||||||
<item value="We need to check the platform after we checked for web, because the OS checks return true when the browser runs on the checked platform. Example: platform.isAndroid return true if the browser is used on an Android device." />
|
|
||||||
<item value="Enable or disable the Crash handling on the Native SDKs, e.g., UncaughtExceptionHandler and [anrEnabled] for Android. SentryCrashIntegration (KSCrash) for iOS, turning this feature off on iOS has a side effect which is missing the Device's context, e.g., App, Device and Operation System. Disabling this feature affects the [enableAutoSessionTracking] feature, as this is required to mark Sessions as Crashed." />
|
|
||||||
<item value="Match the baseline of the placeholder with the baseline. The [TextBaseline] to use must be specified and non-null when using this alignment mode." />
|
|
||||||
<item value="How the placeholder aligns vertically with the text. See [ui.PlaceholderAlignment] for details on each mode." />
|
|
||||||
</histories>
|
</histories>
|
||||||
<option name="languageScores">
|
<option name="languageScores">
|
||||||
<map>
|
<map>
|
||||||
<entry key="CHINESE" value="141" />
|
<entry key="CHINESE" value="172" />
|
||||||
<entry key="ENGLISH" value="142" />
|
<entry key="ENGLISH" value="172" />
|
||||||
<entry key="POLISH" value="1" />
|
<entry key="POLISH" value="1" />
|
||||||
<entry key="ROMANIAN" value="1" />
|
<entry key="ROMANIAN" value="1" />
|
||||||
</map>
|
</map>
|
||||||
|
|||||||
Reference in New Issue
Block a user