Unverified Commit 3191af13 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] add more information to obfuscate option documentation (#52282)

parent 88b39402
......@@ -400,7 +400,12 @@ abstract class FlutterCommand extends Command<void> {
'mapping between the values and the original identifiers is stored in the '
'symbol map created in the specified directory. For an app built with this '
'flag, the \'flutter symbolize\' command with the right program '
'symbol file is required to obtain a human readable stack trace.',
'symbol file is required to obtain a human readable stack trace.\n\n'
'Because all identifiers are renamed, methods like Object.runtimeType, '
'Type.toString, Enum.toString, Stacktrace.toString, Symbol.toString '
'(for constant symbols or those generated by runtime system) will '
'return obfuscated results. Any code or tests that rely on exact names '
'will break.'
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment